2021-11-14 08:22:57 +01:00
|
|
|
{#-
|
|
|
|
This file was automatically generated - do not edit
|
|
|
|
-#}
|
|
|
|
{% if page.edit_url %}
|
2022-04-07 19:18:50 +02:00
|
|
|
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-content__button md-icon">
|
2022-09-01 16:54:05 +02:00
|
|
|
{% set icon = config.theme.icon.edit or "material/pencil" %}
|
|
|
|
{% include ".icons/" ~ icon ~ ".svg" %}
|
2022-04-07 19:18:50 +02:00
|
|
|
</a>
|
2021-11-14 08:22:57 +01:00
|
|
|
{% endif %}
|
2022-02-17 17:20:36 +01:00
|
|
|
{% if "tags" in config.plugins %}
|
|
|
|
{% include "partials/tags.html" %}
|
|
|
|
{% endif %}
|
2021-11-14 08:22:57 +01:00
|
|
|
{% if not "\x3ch1" in page.content %}
|
|
|
|
<h1>{{ page.title | d(config.site_name, true)}}</h1>
|
|
|
|
{% endif %}
|
|
|
|
{{ page.content }}
|
2022-06-04 07:51:12 +02:00
|
|
|
{% if page.meta and (
|
2021-11-14 08:22:57 +01:00
|
|
|
page.meta.git_revision_date_localized or
|
|
|
|
page.meta.revision_date
|
|
|
|
) %}
|
|
|
|
{% include "partials/source-file.html" %}
|
|
|
|
{% endif %}
|
2022-07-20 17:25:55 +02:00
|
|
|
{% include "partials/feedback.html" %}
|