summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html25
1 files changed, 25 insertions, 0 deletions
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" %}
+
+<h1>
+<a href=http://blaise.zone>blaise</a>/blog
+</h1>
+
+<hr>
+
+<p>
+Welcome to my personal blog! <br>
+This page lists my blog entries in reverse chronological order. <br>
+You may also browse by tag (coming soon). <br>
+You may be interested in my meta post (coming soon). <br>
+Thanks for stopping by! —Blaise
+</p>
+
+<p>
+{% for post in posts %}
+ {{ post.date }}
+ <a href=./{{ post.path }}>{{ post.title }}</a>
+ <br>
+{% endfor %}
+</p>
+
+{% include "footer.html" %}