gronk/templates/article.html

43 lines
1.2 KiB
HTML
Raw Normal View History

2021-04-30 20:55:13 +00:00
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" />
<link rel="stylesheet" type="text/css" href="/styles.css" />
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<title>$title$</title>
</head>
2021-05-01 11:00:01 +00:00
<body>
2021-08-21 01:29:00 +00:00
<div id="header">
2021-09-01 16:19:44 +00:00
<p style="font-size: 0.7em"> tags: [
2021-09-01 15:37:47 +00:00
$for(tags)$
<a href="/.tags/$tags$.html">$tags$</a>$sep$,
$endfor$
2021-09-01 16:19:44 +00:00
]</p>
<p class="smallText">
written by $for(author)$$author$$sep$, $endfor$
2021-09-01 17:26:18 +00:00
</p>
2021-09-01 16:19:44 +00:00
<p class="smallText">
syntax highlighting based on <a href="https://pygments.org/">Pygments'</a> default
colors
2021-09-01 15:37:47 +00:00
</p>
<p class="smallText">
2021-09-01 16:19:44 +00:00
page generated by <a href="https://git.alv.cx/alvierahman90/notes2web">notes2web</a>
2021-08-15 19:40:13 +00:00
</p>
2021-08-21 01:29:00 +00:00
<details id="commitLog">
<summary class="smallText">
2021-08-21 01:14:12 +00:00
Commit log (file history)
</summary>
$filehistory$
2021-08-21 01:14:12 +00:00
</details>
2021-09-01 17:26:18 +00:00
<details>
<summary class="smallText">
License
</summary>
<pre>$licenseFull$</pre>
</details>
2021-08-21 01:29:00 +00:00
<div>
$body$
2021-05-01 11:00:01 +00:00
</body>