{% extends "base.html" %}
{% block site_meta %}
{% if page.meta and page.meta.description %}
{% elif config.site_description %}
{% endif %}
{% if page.meta and page.meta.author %}
{% elif config.site_author %}
{% endif %}
{% if page.canonical_url %}
{% endif %}
{% if page.previous_page %}
{% endif %}
{% if page.next_page %}
{% endif %}
{% if config.extra.alternate is iterable %}
{% for alt in config.extra.alternate %}
{% endfor %}
{% endif %}
{% if "rss" in config.plugins %}
{% endif %}
{% endblock %}
{% block announce %}{% if config.extra.offline %}
You're viewing an offline copy of Privacy Guides built on {{ build_date_utc }}.
Visit privacyguides.org for the latest version.
{% elif config.extra.context == "deploy-preview" %}
You're viewing an unreviewed preview of Privacy Guides built on {{ build_date_utc }}.
These previews are user-submitted and may not necessarily reflect the opinion of the site.
Visit privacyguides.org for current advice.
{% else %}{% endif %}{% endblock %}
{% block extrahead %}{% if page and page.meta and page.meta.schema %}
{% endif %}{% endblock %}