]> git.r.bdr.sh - rbdr/blog/blame - templates/index.html
✨📝🔧 Add generator bin and files
[rbdr/blog] / templates / index.html
CommitLineData
cf630290
BB
1<!doctype html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="description" content="This is the blog at unlimited.pizza">
6
7 <title>blog 🍕</title>
8
9 <link href="css/style.css" rel="stylesheet">
10
11 </head>
12 <body>
13 <header class="main-header">
14 <a href="/">Blog</a>
15 </header>
16 <main>
17 {{#posts}}
18 <article id="{{id}}">
19 {{{html}}}
20 </article>
21 <hr>
22 {{/posts}}
23 {{^posts}}
24 <h1>This is a fresh blog!</h1>
25 <p>There are no posts yet.</p>
26 {{/posts}}
27 </main>
28 <footer>
29 <p>Only 3 entries kept at any time. Press 1, 2, and 3 to switch. <a href="https://unlimited.pizza">unlimited.pizza</a></p>
30 </footer>
31 </body>
32</html>