From 5e2a82641aab330f9a94a74b5fa4386dd684d7f1 Mon Sep 17 00:00:00 2001 From: Blaise Thompson Date: Sat, 11 Apr 2020 18:59:35 -0500 Subject: initial commit --- templates/index.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 templates/index.html (limited to 'templates/index.html') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..dbd6bd4 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,25 @@ +{% include "header.html" %} + +

+blaise/blog +

+ +
+ +

+Welcome to my personal blog!
+This page lists my blog entries in reverse chronological order.
+You may also browse by tag (coming soon).
+You may be interested in my meta post (coming soon).
+Thanks for stopping by! —Blaise +

+ +

+{% for post in posts %} + {{ post.date }} + {{ post.title }} +
+{% endfor %} +

+ +{% include "footer.html" %} -- cgit v1.2.3