{% extends "lotus/base.html" %} {% load i18n %} {% block header-title %}{% trans "Categories" %} | {{ django_blog_plus_site_name|default:"Blog" }}{% endblock header-title %} {% block lotus_content %}

{% trans "Categories" %}

{% trans "Browse articles by category" %}

{% if category_list %}
{% for category in category_list %} {% if category.cover %}
{{ category.title }}
{% endif %}

{{ category.title }}

{% if category.description %}

{{ category.description|truncatewords:20 }}

{% endif %}
{% endfor %}
{% else %}

{% trans "No categories found." %}

{% endif %} {% include "lotus/pagination.html" %}
{% endblock lotus_content %}