diff options
author | Blaise Thompson <blaise@untzag.com> | 2020-04-11 18:59:35 -0500 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2020-04-11 18:59:35 -0500 |
commit | 5e2a82641aab330f9a94a74b5fa4386dd684d7f1 (patch) | |
tree | c7ec42c4c9e9a89c09660472f41a365cffd53d7b /templates/index.html |
initial commit
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 25 |
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" %} |