{% extends "simple_blog/page.html" %} {% load i18n static simpleblog_tags %} {% block post_meta %}{% endblock %} {% block post_title %}{% endblock post_title %} {% block post_content_bottom %}
{% 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 %}