{% set features = config.theme.features or [] %} {% set palette_name = config.theme.palette or "default" %} {% set palette = "css/palettes/" ~ palette_name ~ ".css" %} {%- block site_meta %} {% include "theme_version.html" %} {% if config.site_description %} {% endif %} {% if config.site_author %} {% endif %} {% if page.canonical_url %} {% endif %} {%- block favicon %}{% include "partials/favicon.html" %}{%- endblock %} {%- endblock %} {%- block htmltitle %}{% include "partials/html-title.html" %}{%- endblock %} {%- block styles %} {% if 'navigation.top.cursor_animation.hide' in features %} {% endif %} {%- endblock %} {% for path in config.extra_css %} {% endfor %} {% block extrahead %}{% endblock %} {% block search %} {% if 'search' in config['plugins'] %} {%- include "partials/search/scripts.html" %} {% endif %} {% endblock %} {% for path in config.extra_javascript %} {% endfor %} {% block analytics %}{% endblock %} {% block debug %}{% include "partials/debug.html" %}{% endblock %} {% if page and page.meta and page.meta.hide %} {% set hide_toc = "true" if "toc" in page.meta.hide %} {% set hide_top_nav = "true" if "top-nav" in page.meta.hide %} {% set hide_side_nav = "true" if "side-nav" in page.meta.hide %} {% endif %} {% if "navigation.top.hide" in features %} {% else %} {% if not hide_top_nav %} {%- block top_nav %}{% include "partials/top-nav.html" %}{%- endblock %} {% endif %} {% endif %}
{%- block side_panel %}{% include "partials/side-panel.html" %}{%- endblock %}
{%- block content_container %}{% include "partials/page.html" %}{%- endblock %}

{%- block footer %}{% include "partials/footer.html" %}{%- endblock %}
{% block search_modal %} {% if 'search' in config['plugins'] %} {%- include "partials/search/modal.html" %} {% endif %} {% endblock %}