summaryrefslogtreecommitdiff
path: root/templates/feed.html
blob: 3afe447c80f26716f3023da46d984c6e624b6724 (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
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{website.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>
<pre>
  _      _      
 | |__ _(_)_ _  
 | / _` | | ' \ 
 |_\__,_|_|_||_|

{{website.description}}
</pre>

{{#posts}}
<a href="{{url}}">{{title}}</a> - {{description}}<br>
{{/posts}}
{{^posts}}
no posts yet...
{{/posts}}
</body>
</html>