{% extends "base.html" %} {% load static wagtailcore_tags wagtailadmin_tags %} {% block body_class %}template-homepage{% endblock %} {% block content %}

{{ page.title }}

{% for post in posts %}

Posted {{ post.first_published_at }}

{% include post.specific.icon with height=1.5 %}
{% include post.specific.index_snippet with post=post %}
{% endfor %}
{% if posts.paginator.num_pages > 1 %} {% endif %}
{% endblock content %} {% block sidebar %}

{{ page.specific.blurb }}

{% if note_count > 0 %} {{note_count}} Note{{ note_count|pluralize }} {% endif %} {% if article_count > 0 %} {{article_count}} Article{{ article_count|pluralize }} {% endif %} {% if photo_count > 0 %} {{photo_count}} Photo{{ photo_count|pluralize }} {% endif %}
{% endblock %}