aboutsummaryrefslogblamecommitdiffstats
path: root/templates/blog.html
blob: 42cf95f41f51fefb3c6bfbd66b4a9bc721466239 (plain) (tree)






















                                        
{% 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 %}