blob: f2a175bea3255926c67c1ee4b5493bf8a6a97419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{post.title}}</title>
<!--TODO: move to external file-->
<style>
body {
font-family: monospace;
background: #000;
color: #0f0;
margin: 20px;
}
a {
color: #0f0;
text-decoration: underline;
}
a:hover {
background: #0f0;
color: #000;
}
</style>
</head>
<body>
<a href="/index.html"><- back</a>
<h1>{{post.title}}</h1>
<p>{{post.description}}</p>
<hr>
{{{post.body}}}
</body>
</html>
|