{% extends 'docs/base.html' %}{% load i18n docs %} {% block content %}
{% include 'docs/components/breadcrumbs.html' %}

{{ section.title }}

{{ section.description }}

{{ section.content }}
    {% for page in section.get_children.specific %}
  1. {% trans 'Read' %}

    {{ page.title }}

    {{ page.description }}

  2. {% endfor %}
{% endblock %} {% block drawer_content %}
  • {{ section.get_parent.title }}
  • {% for page in section.get_children %}
  • {{ page.title }}
  • {% endfor %} {% endblock %}