aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: e741c68832702ff287069f1889fea434fd61ea87 (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
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="description" content="This is the blog at unlimited.pizza">

    <title>blog 🍕</title>

    <script src="/js/blog.js"></script>

    <link href="css/style.css" rel="stylesheet">

  </head>
  <body>
    <header class="main-header">
      <a href="/">Blog</a>
    </header>
    <main>
    {{#posts}}
      <article id="{{id}}">
        {{{html}}}
      </article>
      <hr>
    {{/posts}}
    {{^posts}}
      <h1>This is a fresh blog!</h1>
      <p>There are no posts yet.</p>
    {{/posts}}
    </main>
    <footer>
      <p>Only 3 entries kept at any time. Press 1, 2, and 3 to switch. <a href="https://unlimited.pizza">unlimited.pizza</a></p>
    </footer>
  </body>
</html>