{% for post in posts %}
{% render_post page post %}
{% empty %}
{% trans "There is no content here !" %}
{% endfor %}
{% endblock %}
{% block post_navigation %}
{% include 'components/pagination.html' with page_object=posts %}
{% endblock %}
{% block section_comments %}{% endblock %}
{% block sidebar_body %}
{{ block.super }}
{% popular_posts title="Popular Posts" %}
{% featured_posts title="Featured Posts" %}
{% endblock sidebar_body %}