{# Import the theme's layout. #} {% extends "bootstrap/layout.html" %} {# Custom CSS overrides #} {% set css_files = css_files + ['_static/style.css'] %} {% set script_files = script_files + ['_static/copybutton.js'] + ['_static/version.js']%} {# Add some extra stuff before and use existing with 'super()' call. #} {%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and sidebars %} {%- set bs_content_width2 = render_sidebar and "8" or "12"%} {% macro seo_title() -%} {% if ishome -%} {{ docstitle|striptags|e }} {%- else -%} {{ title|striptags|e }} | {{ docstitle|striptags|e }} {%- endif %} {%- endmacro %} {%- macro description() -%} {{ (seo_description or theme_seo_description )|striptags|e }} {%- endmacro -%} {%- block extrahead -%} {%- endblock %} {%- block content %} {{ navBar() }}
{%- block sidebar1 %} {%- if render_sidebar and sidebars %}
{%- endif %} {% endblock %}
{% block body %}{% endblock %}
{% block sidebar2 %} {# possible location for sidebar #} {% endblock %}
{%- endblock %}