aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2017-07-03 00:55:32 -0500
committerBen Beltran <ben@nsovocal.com>2017-07-03 00:55:32 -0500
commit5e265f9d81bcce30949e88850892ea5dacec7386 (patch)
tree056dfe345174027335cc033359dfbe14a8d53250 /templates
parent4ae55e0673a61c50f1f7f378f6461d0388f66bd5 (diff)
parentbe33bb82f6276b05a3861df8a7c5138ac320a00b (diff)
Merge branch 'release/1.0.0'
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..e741c68
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,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>