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

{{ tag_object.name }}

{% 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 with this tag yet." %}

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