Files
poems/post.html
2017-04-03 15:19:07 +02:00

25 lines
483 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Veit's Poems</title>
<link rel="stylesheet" type="text/css" href="/poems/style.css">
<script defer src="/poems/nav.js"></script>
</head>
<body>
{{#poems}}
<div class="poem">
{{{.}}}
</div>
{{/poems}}
<div id="bottom">
<span class="nav" id="bck">
&laquo;
</span>
<span class="nav" id="fwd">
&raquo;
</span>
</div>
</body>
</html>