{% extends "base.html" %} {% from "library.j2" import standard_button %} {% block head_lead %} {% trans %}Policies{% endtrans %} - {{ config["SITE_NAME"] }} {% endblock %} {% block body %}

{{ config["SITE_NAME"] }}

{% trans %}Policies{% endtrans %}

{% if config["TOS_URI"] or config["PRIVACY_URI"] -%}

{% trans %}Use of this service is subject to the following policies:{% endtrans %}

{%- else -%}

{% trans %}Please contact the administrator of this instance if you have questions about policies.{% endtrans %}

{% endif -%}

{% trans url="https://snikket.org/app/privacy/" %}Use of the Snikket apps is subject to the Snikket Apps Privacy Policy.{% endtrans %}

{%- if config["ABUSE_EMAIL"] %}

{% trans email=config["ABUSE_EMAIL"], domain=config["SNIKKET_DOMAIN"] %}To report policy violations or other abuse from this service, please send an email to {{email}}. Specify the domain name of this instance ({{domain}}) and include details of the incident(s).{% endtrans %}

{%- endif %}

{%- call standard_button("back", url_for("index"), class="primary") -%} {% trans %}Back to the main page{% endtrans %} {%- endcall -%}

{% endblock %}