{% load i18n %}

{{ category.name }}

{{ category.get_pages|length }} {% blocktrans with plural=category.get_pages|length|pluralize %} article{{ plural }} {% endblocktrans %}

{% if category.short_description %}

{{ category.short_description|safe }}

{% endif %} {% if category.description %}

{{ category.description|safe }}

{% endif %} {% for page in category.get_pages %} {% if page.is_highlighted %}

{{ page.title }}

{% if page.image %} {{ page.title }} {% endif %}

{% if page.synopsis %} {{ page.synopsis|safe }} {% else %} {{ page.content|truncatewords_html:60|safe }} {% endif %}

{% else %}

{{ page.title }}

{% if page.image %} {{ page.title }} {% endif %}

{% if page.synopsis %} {{ page.synopsis|truncatewords_html:30|safe }} {% else %} {{ page.content|truncatewords_html:30|safe }} {% endif %} {% trans "Read more" %}

{% endif %} {% endfor %}