{% extends theme("blog/layout.html") %} {% import theme("blog/utils.html") as blog_utils with context %} {% set no_entries_msg = _("There are no entries in this blog.") %} {% if tag %} {% set no_entries_msg = _("There are no entries in the '{tag}' blog category.").format(tag=tag) %} {% endif %} {% block pagepath %} {{ super() }} {% if tag %} / {{ _("Category:") }} {% if blog_name %} {{ tag }} {% else %} {{ tag }} {% endif %} {% endif %} {% endblock %} {% block blog_content %} {% if blog_entry_items %} {% for entry_item in blog_entry_items %} {{ blog_utils.show_blog_entry(entry_item) }} {% endfor %} {% else %}
{% endif %} {% endblock %}