{% extends 'basic/layout.html' %}
{%- set css_files = theme_extra_css_files.split(',') | map('trim') | reject('equalto', '') -%}
{% macro navbar() %}
{# hierarchical navigation -#}
{{ shorttitle | e }}
{%- if parents %}{{ reldelim1 }} {% endif %}
{%- for parent in parents -%}
{{ parent.title }}
{% if not loop.last %}{{ reldelim1 }} {% endif %}
{%- endfor %}
|
{# right-hand misc links; prev, next, indices -#}
{% for rellink in rellinks | reverse -%}
{{ rellink[3] }}
{% if not loop.last %}{{ reldelim2 }} {% endif %}
{% endfor %}
|
{% endmacro %}
{% macro sidebar_table() %}
{%- if render_sidebar -%}
{%- endif -%}
{% endmacro %}
{% block relbar1 %}
{% endblock %}
{% block sidebar1 %}{{ sidebar_table() }}{% endblock %}
{% block sidebar2 %}{% endblock %}
{% block relbar2 %}{% endblock %}
{% block footer %}
{{ navbar() }}
{{ super() }}
|
{% endblock %}