{%- block site_meta %}
{% if page and page.is_homepage %}{% endif %}
{% if config.site_author %}{% endif %}
{% if page and page.canonical_url %}{% endif %}
{%- endblock %}
{%- block htmltitle %}
{% if page and page.title and not page.is_homepage %}{{ page.title }} - {% endif %}{{ config.site_name }}
{%- endblock %}
{%- block styles %}
{%- if config.theme.highlightjs %}
{%- endif %}
{%- for path in config['extra_css'] %}
{%- endfor %}
{%- endblock %}
{%- block libs %}
{%- if config.theme.highlightjs %}
{%- for lang in config.theme.hljs_languages %}
{%- endfor %}
{%- endif %}
{%- endblock %}
{%- block analytics %}
{%- if config.google_analytics %}
{%- endif %}
{%- endblock %}
{%- block extrahead %} {% endblock %}
{% include "navbar.html" %}
{%- block content %}
{% include "toc.html" %}
{% if page and not (page.is_top_level and page.is_index and page.file.url == "index.html") %}
{% include "breadcrumbs.html" %}
{{page.title}}
{% endif %}
{% include "content.html" %}
{%- endblock %}
{%- block scripts %}
{% include "search_modal.html" %}
{%- for path in config['extra_javascript'] %}
{%- endfor %}
{%- endblock %}
{% if 'search' in config['plugins'] %}{%- include "search-modal.html" %}{% endif %}
{%- include "keyboard-modal.html" %}