summaryrefslogtreecommitdiff
path: root/templates/blog.html
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2017-08-07 08:55:33 +0300
committerYuval Adam <_@yuv.al>2017-08-07 08:57:40 +0300
commit14958653b9bf92f56316511e8080baeeaf409b97 (patch)
tree65503639105fa6074bcbeb11164cc82a70828c4e /templates/blog.html
Basic structure and initial homepage
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 %}