2022-04-07 20:18:50 +03:00
|
|
|
{#-
|
|
|
|
This file was automatically generated - do not edit
|
|
|
|
-#}
|
|
|
|
{% if page.edit_url %}
|
|
|
|
{% set edit = "https://github.com/squidfunk/mkdocs-material/edit" %}
|
|
|
|
{% set view = "https://raw.githubusercontent.com/squidfunk/mkdocs-material" %}
|
|
|
|
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-content__button md-icon">
|
|
|
|
{% include ".icons/material/file-edit-outline.svg" %}
|
|
|
|
</a>
|
|
|
|
<a href="{{ page.edit_url | replace(edit, view) }}" title="View source of this page" class="md-content__button md-icon">
|
|
|
|
{% include ".icons/material/file-eye-outline.svg" %}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if "tags" in config.plugins %}
|
|
|
|
{% include "partials/tags.html" %}
|
|
|
|
{% endif %}
|
|
|
|
{% if not "\x3ch1" in page.content %}
|
|
|
|
<h1>{{ page.title | d(config.site_name, true)}}</h1>
|
|
|
|
{% endif %}
|
|
|
|
{{ page.content }}
|
2022-06-04 08:51:12 +03:00
|
|
|
{% if page.meta and (
|
2022-04-07 20:18:50 +03:00
|
|
|
page.meta.git_revision_date_localized or
|
|
|
|
page.meta.revision_date
|
|
|
|
) %}
|
|
|
|
{% include "partials/source-file.html" %}
|
|
|
|
{% endif %}
|
2022-07-20 18:25:55 +03:00
|
|
|
{% include "partials/feedback.html" %}
|