{% extends "lotus/base.html" %} {% load i18n lotus django_blog_plus %} {% block header-title %}{% trans "Articles by" %} {{ author_object.get_full_name|default:author_object.username }} | {{ django_blog_plus_site_name|default:"Blog" }}{% endblock header-title %} {% block lotus_content %}

{{ author_object.get_full_name|default:author_object.username }}

{% if article_list %}
{% for article in article_list %}
{% if article.cover %} {{ article.cover_alt_text|default:article.title }} {% else %}
{{ article.title|slice:":1"|upper }}
{% endif %}
{{ article.publish_datetime|date:"M d, Y" }}

{{ article.title }}

{{ article.introduction|striptags|unescape_html|truncatewords:20 }}

{% endfor %}
{% else %}

{% trans "No articles by this author yet." %}

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