{% extends "base.html" %} {% load get_placeholder_tag %} {% block content %} {% get_placeholder "top" as top %} {% get_placeholder "main" as main %} {% get_placeholder "side" as side %} {% get_placeholder "bottom" as bottom %} {% if top %}
{{ top }}
{% endif %}
{{ main }} {% include "articles/_index.html" %}
{{ side }}
{% if bottom %}
{{ bottom }}
{% endif %} {% endblock %}