{% extends 'simpel_pages/base.html' %} {% block content %}

{{ object|title }}

{% if object.description %}
{{ object.description|safe }}
{% endif %}
{% for page in object_list %} {% include 'simpel_pages/includes/page.html' with page=page %} {% empty %} {% include 'simpel_pages/includes/no_results.html' %} {% endfor %} {% if is_paginated %} {% include 'simpel_pages/includes/pagination.html' %} {% endif %}
{% endblock content %}