aboutsummaryrefslogtreecommitdiffstats
path: root/templates/blog.html.tera
diff options
context:
space:
mode:
Diffstat (limited to 'templates/blog.html.tera')
-rw-r--r--templates/blog.html.tera22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/blog.html.tera b/templates/blog.html.tera
new file mode 100644
index 0000000..20ec08e
--- /dev/null
+++ b/templates/blog.html.tera
@@ -0,0 +1,22 @@
+{% extends "base" %}
+
+{% block nav_blog %}active{% endblock %}
+
+{% block content %}
+
+{% for blogpost in blogposts %}
+{% include "blogpost-panel" %}
+{% endfor %}
+
+{% endblock content %}
+
+{% block aside %}
+
+<aside>
+
+ {% include "latestposts" %}
+ {% include "filtertags" %}
+
+</aside>
+
+{% endblock aside %}