{% extends "layout.html" %} {% block title %}{% trans category=category.name|e %}Show “{{ category }}”{% endtrans %}{% endblock %} {% from "_entry.html" import render_entry %} {% block contents %}

{% trans category=category.name|e %}Entries in the Category “{{ category }}”{% endtrans %}

{%- for post in posts %} {{ render_entry(post) }} {% else %}

{{ _('No public posts found') }}

{%- endfor %} {%- if pagination.necessary %} {%- endif %} {% endblock %}