{# Import the theme's layout. #} {% extends "!layout.html" %} {# Custom CSS overrides #} {% block extrahead %} {%- include "head.html" %} {{ super() }} {% endblock %} {# Override content block #} {%- macro miniosidebar() %} {%- if render_sidebar %} {%- block sidebarlogo %} {%- if logo %} {%- endif %} {%- endblock %} {%- if sidebars != None %} {#- new style sidebar: explicitly include/exclude templates #} {%- for sidebartemplate in sidebars %} {%- include sidebartemplate %} {%- endfor %} {%- else %} {#- old style sidebars: using blocks -- should be deprecated #} {%- block sidebarrel %} {%- include "relations.html" %} {%- endblock %} {%- block sidebarsourcelink %} {%- include "sourcelink.html" %} {%- endblock %} {%- if customsidebar %} {%- include customsidebar %} {%- endif %} {%- block sidebarsearch %} {%- include "searchbox.html" %} {%- endblock %} {%- endif %} {%- endif %} {%- endmacro %} {%- block header %} {%- include "header.html" %} {%- endblock %} {%- block content %} {%- include "icons/close.html" %} Close Doc Navigation {{ shorttitle}} {{ miniosidebar() }} {%- include "toc.html" %} {% block body %} {% endblock %} {%- include "footer.html" %} {%- endblock %} {%- block footer %} {%- include "cookie.html" %} {%- endblock %}