45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
<!doctype html>
|
|
<!-- Adopted from: pandoc --print-default-template=html5 -->
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="/styles.css">
|
|
<title>$title$ - Volker Weißmann</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
|
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
|
|
<meta name="description" content="$abstract$" />
|
|
</head>
|
|
|
|
<body>
|
|
$if(table-of-contents)$
|
|
<div id="sidebar">
|
|
<nav id="TOC" role="doc-toc">
|
|
<h3>Table of Contents</h3>
|
|
$table-of-contents$
|
|
</nav>
|
|
</div>
|
|
$endif$
|
|
<div id="article">
|
|
<article>
|
|
<h1> $title$ </h1>
|
|
$if(abstract)$
|
|
<div class="abstract">
|
|
<div class="abstract-title">$abstract-title$</div>
|
|
$abstract$
|
|
</div>
|
|
$endif$
|
|
<!-- If the follow line is indented, <pre> blocks in markdown will be indented, but they should not. The file extension is .nfhtml instead of .html to stop vscode from formatting on save. -->
|
|
$body$
|
|
</article>
|
|
</div>
|
|
<hr>
|
|
<center>
|
|
<footer>
|
|
<a href="/">Home</a> | <a href="mailto:volker.weissmann@gmx.de">volker.weissmann@gmx.de</a>
|
|
</footer>
|
|
</center>
|
|
</body>
|
|
|
|
</html>
|