{% extends "radpress/base.html" %} {% load trans from i18n %} {% 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 %}

{{ object.title }}

{{ object.content_body|safe }}
{% endfor %}

{% trans "Blog Archives" %}

{% else %}

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

{% endif %}
{% endblock %} {% block sidebar %} {% endblock %}