{# This is an example template for documentation pages using full width documentation layout. Some details of it need to be edited to fit template and partial names in your project, or any other custom project-specific updates. See examples/README.md for more details on how to apply this template in your project. #} {% extends "base_layout.html" %} {% block title %}[YOUR SITE TITLE HERE] - {{ document.title }} {% endblock %} {% set is_docs = True %} {% block body %} {# This is a macro that generates side navigation #} {% macro create_navigation(nav_items, expandable=False, expanded=False) %} {% endmacro %}
{# HEADER AREA Contains top navigation and search box #}
{% include "_header.html" %}
{# SIDEBAR AREA Contains side navigation #}
{# TITLE AREA Contains page title (and possibly any other information to be displayed with it). Rendered above table of contents on smaller screens. #}
{% if document.title %}

{{ document.title }}

{% endif %}
{# TABLE OF CONTENTS AREA Contains table of contents (and possibly any other meta data). Rendered on the right side of the page on larger screens, or between title and main content on smaller screens. #} {% if document.headings_map is defined and document.headings_map|length > 0 %}
{% endif %} {# MAIN CONTENT AREA Contains content of the document. #}
{{ document.body_html | safe }}

Last updated {{ document.updated }}. Help improve this document in the forum.

{# FOOTER AREA #}
{% endblock %}