This commit is contained in:
2017-03-29 17:49:36 +02:00
commit 556f37792b
8 changed files with 179 additions and 0 deletions

24
layout.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Veit's Poems</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<script defer src="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>