diff options
Diffstat (limited to 'templates/blog.html')
-rw-r--r-- | templates/blog.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..42cf95f --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} + +{% block reverse %}reverse{% endblock %} +{% block nav_blog %}active{% endblock %} + +{% block content %} + +{% for blogpost in blogposts %} +{% include "blogpost-panel.html" %} +{% endfor %} + +{% endblock content %} + +{% block aside %} + +<aside> + + {% include "latestposts.html" %} + {% include "filtertags.html" %} + +</aside> + +{% endblock aside %}
\ No newline at end of file |