{% extends "base.html" %} {% load categories i18n static %} {% block title %} {% blocktranslate with name=author.name %} Articles by {{ name }} {% endblocktranslate %} {% endblock %} {% block content %}

{{ author.name }}

{% if author.description %}

{{ author.description|safe }}

{% endif %} {% block tags %} {% if tags %} {% include "feeds/snippets/tag_author_cloud.html" %} {% endif %} {% endblock %}
{% block pagination %} {% include "feeds/snippets/pagination.html" %} {% endblock %}
{% endblock %}