{% extends "radpress/base.html" %} {% load trans from i18n %} {% load thumbnail %} {% block title %}{% trans "Mainpage" %}{% endblock %} {% block content %}
{% if object_list.count %} {% for object in object_list %}
{% if object.tags.count %}
{% for tag in object.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
{% if user.is_superuser %} {% endif %}

{{ object.title }}

{% if object.cover_image %} {% endif %}
{{ object.content_by_more|safe }}
{% endfor %}

{% trans "Blog Archives" %}

{% else %}

{% trans "There's no post for now." %}

{% endif %}
{% endblock %}