{% extends "base.html" %}
{% block main_content %}
{% if page and not page.meta.disable_tol and page.toc %}
{% with page = page %}
{% include "./components/toc.html.j2" %}
{% endwith %}
{% endif %}
{% if ("i18n" in config.plugins) and (i18n_file_locale != i18n_page_locale) %}
{% with i18n_config = i18n_config, i18n_page_locale = i18n_page_locale %}
{% include "./components/untranslatedAlert.html.j2" %}
{% endwith %}
{% endif %}
{% if page.meta.long_title %}
{{ page.meta.long_title }}
{% else %}
{{ page.title }}
{% endif %}
{% if page and page.meta.summary %}
{{ page.meta.summary }}
{% endif %}
{% if page and not page.meta.disable_tools %}
{% if page and not page.meta.disable_nav_tool %}
{% if page.previous_page %}
{% else %}
{% endif %}
{% if page.next_page %}
{% else %}
{% endif %}
{% if page and page.meta.author %}
{% if page and page.meta.author_url %}
{{ page.meta.author }}
{% else %}
{{ page.meta.author }}|
{% endif %}
{% else %}
{% if git_page_authors %}
{{ git_page_authors | default('enable mkdocs-git-authors-plugin') }}
|
{% endif %}
{% endif %}
{% if page and page.meta.date %}
{{ page.meta.date }}
{% else %}
{% if page.meta.revision_date %}
{{ page.meta.revision_date }}
{% endif %}
{% endif %}
{% if page and not page.meta.disable_edit %}
{% if page and page.edit_url %}
{% elif config.repo_url %}
{% else %}
{% endif %}
{% endif %}
{% if "i18n" in config.plugins %}