{% extends "base.html" %} {% block title %}Category: {{ category }} - {{ site_title }}{% endblock %} {% block feed_links %} {% endblock %} {% block feed_nav_links %}
  • RSS
  • Atom
  • {% endblock %} {% block meta_tags %} {% from '_listing_meta_tags.html' import listing_meta_tags with context %} {{ listing_meta_tags("Category: " ~ category ~ " - " ~ site_title) }} {% endblock %} {% from '_pagination.html' import pagination %} {% from '_post_summary.html' import post_summary with context %} {% block content %}

    Posts in category "{{ category }}"

    {{ pagination(page, total_pages, pagination_page_urls) }} {% if posts %} {% for post in posts %} {{ post_summary(post, include_category=false) }} {% endfor %} {% else %}

    No posts in this category.

    {% endif %} {{ pagination(page, total_pages, pagination_page_urls) }}
    {% endblock %}