2021-11-13 13:39:10 +03:00
|
|
|
<!--
|
2023-01-02 13:08:58 +03:00
|
|
|
Copyright (c) 2016-2023 Martin Donath <martin.donath@squidfunk.com>
|
2021-11-13 13:39:10 +03:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to
|
|
|
|
deal in the Software without restriction, including without limitation the
|
|
|
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
IN THE SOFTWARE.
|
|
|
|
-->
|
|
|
|
|
2022-02-17 19:20:36 +03:00
|
|
|
<!-- Tags -->
|
2022-10-16 12:36:38 +03:00
|
|
|
{% if "material/tags" in config.plugins %}
|
2022-02-17 19:20:36 +03:00
|
|
|
{% include "partials/tags.html" %}
|
|
|
|
{% endif %}
|
|
|
|
|
2022-09-03 22:33:49 +03:00
|
|
|
<!-- Actions -->
|
|
|
|
{% include "partials/actions.html" %}
|
|
|
|
|
2021-11-13 15:08:22 +03:00
|
|
|
<!--
|
2022-07-20 18:25:55 +03:00
|
|
|
Hack: check whether the content contains a h1 headline. If it doesn't, the
|
|
|
|
page title (or respectively site name) is used as the main headline.
|
2021-11-13 15:08:22 +03:00
|
|
|
-->
|
2022-11-12 16:44:59 +03:00
|
|
|
{% if "\x3ch1" not in page.content %}
|
2021-11-13 15:08:22 +03:00
|
|
|
<h1>{{ page.title | d(config.site_name, true)}}</h1>
|
|
|
|
{% endif %}
|
|
|
|
|
2022-09-03 22:33:49 +03:00
|
|
|
<!-- Page content -->
|
2021-11-13 15:08:22 +03:00
|
|
|
{{ page.content }}
|
2021-11-14 10:22:57 +03:00
|
|
|
|
|
|
|
<!-- Source file information -->
|
2022-06-04 08:51:12 +03:00
|
|
|
{% if page.meta and (
|
2021-11-14 10:22:57 +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
|
|
|
|
|
|
|
<!-- Was this page helpful? -->
|
|
|
|
{% include "partials/feedback.html" %}
|
2022-09-11 20:25:40 +03:00
|
|
|
|
|
|
|
<!-- Comment system -->
|
|
|
|
{% include "partials/comments.html" %}
|