summaryrefslogtreecommitdiff
path: root/templates/blog.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/blog.html')
-rw-r--r--templates/blog.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/blog.html b/templates/blog.html
new file mode 100644
index 0000000..deb2148
--- /dev/null
+++ b/templates/blog.html
@@ -0,0 +1,9 @@
+{% extends 'base.html' %}
+
+{% block body %}
+<ul>
+{% for post in posts %}
+ <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+{% endfor %}
+</ul>
+{% endblock %}