{%- extends "basic/layout.html" %} {# Do this so that bootstrap is included before the main CSS file. #} {%- block htmltitle %} {% if metatags is defined %} {% set description = metatags.split('\n') %} {{ description[0] }} {% endif %} {%- block ga %} {%- if theme_google_analytics_tracking_id %} {%- endif %} {%- endblock %} {{ super() }} {%- endblock %} {# Displays the PREVIOUS and NEXT links both before and after content. #} {% macro render_relations() -%} {% if prev or next %}
{% endif %} {%- endmacro %} {%- macro guzzle_sidebar() %}
{%- if sidebars != None %} {#- new style sidebar: explicitly include/exclude templates #} {%- for sidebartemplate in sidebars %} {%- include sidebartemplate %} {%- endfor %} {% else %} {% include "searchbox.html" %} {% include "globaltoc.html" %} {%- endif %}
{%- endmacro %} {%- block header -%} {% include "header.html" %} {%- endblock %} {%- block content %}
{%- if theme_toc_global %}
{%- block sidebar1 %}{{ guzzle_sidebar() }}{% endblock %} {%- endif %} {%- block document_wrapper %} {%- block document %}
{% block breadcrumbs %} {%- if theme_toc_global %}
{%- endif %} {% endblock %}
{% block body %} {% endblock %}
{% if theme_relations %} {%- block bottom_rel_links %} {{ render_relations() }} {%- endblock %} {% endif %}
{%- block comments -%} {% include "localtoc.html" %} {%- endblock %} {%- if not theme_toc_global %}
{% if parents|length > 0 %} {% with doc = parents|last %} {% endwith %} {% elif pagename != "index" %} {% endif %}
{%- endif %}
{%- endblock %} {%- endblock %}
{%- endblock %} {%- block footer %} {% include "footer.html" %} {%- endblock %}