2024-04-05 10:44:23 +00:00
<!--
2025-08-12 01:55:49 -05:00
SPDX-FileCopyrightText: 2016 Martin Donath < martin.donath @ squidfunk . com >
SPDX-FileCopyrightText: 2024 Jonah Aragon < jonah @ privacyguides . org >
2024-04-05 10:44:23 +00:00
2025-08-12 01:55:49 -05:00
SPDX-License-Identifier: MIT OR LicenseRef-MIT-mkdocs-material
2024-04-05 10:44:23 +00:00
-->
{% if page and page.meta and page.meta.cover %}
2024-04-05 14:47:56 -05:00
< div class = "cover center-cropped" >
2024-09-07 13:54:21 -05:00
< img itemprop = "image" src = "{{ 'assets/img/cover/' | url }}{{ page.meta.cover }}" alt = "" >
2024-04-05 10:44:23 +00:00
< / div >
2024-04-05 14:47:56 -05:00
< h1 > {{ page.title | d(config.site_name, true)}}< / h1 >
2024-04-05 10:44:23 +00:00
{% 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 -->
2024-09-22 08:27:17 +00:00
< div >
2024-04-05 10:44:23 +00:00
{{ page.content }}
2024-09-07 13:54:21 -05:00
< / div >
2024-04-05 10:44:23 +00:00
<!-- 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 %}
2024-04-10 10:40:27 +00:00
{% if config.theme.language == "en" %}
2024-04-05 10:44:23 +00:00
{% 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" %}