{% load i18n %}{% spaceless %}

{{ instance.title }}

{% with categories=from_categories %} {% if categories %}
{% translate "Categories" %} {% for category in categories %} {{ category.title }} {% endfor %}
{% endif %} {% endwith %} {% with tags=from_tags %} {% if tags %}
{% translate "Tags" %} {% for tag in tags %} {{ tag.name }} {% endfor %}
{% endif %} {% endwith %}
{% for article in articles %}
{% include "lotus/article/partials/item.html" with article_object=article from="article-list" %}
{% endfor %}
{% endspaceless %}