1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-08-19 17:34:53 +00:00
Files
privacyguides.org/theme/partials/content.html

47 lines
1.6 KiB
HTML
Raw Normal View History

<!--
SPDX-FileCopyrightText: 2016 Martin Donath <martin.donath@squidfunk.com>
SPDX-FileCopyrightText: 2024 Jonah Aragon <jonah@privacyguides.org>
SPDX-License-Identifier: MIT OR LicenseRef-MIT-mkdocs-material
-->
{% if page and page.meta and page.meta.cover %}
2024-04-05 14:47:56 -05:00
<div class="cover center-cropped">
<img itemprop="image" src="{{ 'assets/img/cover/' | url }}{{ page.meta.cover }}" alt="">
</div>
2024-04-05 14:47:56 -05:00
<h1>{{ page.title | d(config.site_name, true)}}</h1>
{% endif %}
<!-- Tags -->
{% include "partials/tags.html" %}
<!-- Actions -->
{% include "partials/actions.html" %}
{% if "\x3ch1" not in page.content and not page.meta.cover %}
<h1>{{ page.title | d(config.site_name, true)}}</h1>
{% endif %}
<!-- Page content -->
<div>
{{ page.content }}
</div>
<!-- Source file information -->
{% include "partials/source-file.html" %}
<!-- Was this page helpful? -->
{% include "partials/feedback.html" %}
{% set translation_notice = config.extra.privacy_guides.translation_notice %}
{% if config.theme.language == "en" %}
{% elif translation_notice %}
<div class="admonition info">
<p>{{ translation_notice.notice }} <strong><a href="https://crowdin.com/project/privacyguides">{{ translation_notice.cta }}</a></strong></p>
<p>You're viewing the {{ translation_notice.language }} copy of Privacy Guides, translated by our fantastic language team on <a href="https://crowdin.com/project/privacyguides">Crowdin</a>. If you notice an error, or see any untranslated sections on this page, please consider <a href="https://matrix.to/#/#pg-i18n:aragon.sh">helping out!</a></p>
</div>
{% endif %}
<!-- Comment system -->
{% include "partials/comments.html" %}