{%- extends "basic/layout.html" %}
{%- block extrahead %}
{{ super() }}
{% if theme_touch_icon %}
{% endif %}
{# Deprecated in favor of html_baseurl (pageurl). This is already set in the basic theme #}
{% if theme_canonical_url and not pageurl %}
{% endif %}
{% endblock %}
{# top+bottom related navs; we also have our own in sidebar #}
{%- macro rellink_markup() %}
{%- endmacro %}
{%- set theme_show_relbar_top = theme_show_relbar_top or theme_show_relbars %}
{%- set theme_show_relbar_bottom = theme_show_relbar_bottom or theme_show_relbars %}
{# removed existing top+bottom related nav, and embed in main content #}
{%- block relbar1 %}{% endblock %}
{%- block relbar2 %}{% endblock %}
{# Nav should appear before content, not after #}
{%- block content %}
{%- if theme_fixed_sidebar|lower == 'true' %}
{{ sidebar() }}
{%- block document %}
{%- if render_sidebar %}
{%- endif %}
{%- block relbar_top %}
{%- if theme_show_relbar_top|tobool %}
{%- endif %}
{% endblock %}
{% block body %} {% endblock %}
{%- block relbar_bottom %}
{%- if theme_show_relbar_bottom|tobool %}
{%- endif %}
{% endblock %}
{%- if render_sidebar %}
{%- endif %}
{%- endblock %}
{%- else %}
{{ super() }}
{%- endif %}
{%- endblock %}
{%- block footer %}
{% if theme_github_banner|lower != 'false' %}
{%- if theme_github_banner|lower == 'true' %}
{%- else %}
{%- endif %}
{% endif %}
{% if theme_analytics_id %}
{% endif %}
{%- endblock %}