12345678910111213141516171819202122 |
- {% extends "cranefly/layout.html" %}
- {% load i18n %}
- {% import "cranefly/macros.html" as macros with context %}
- {% block title %}{% if settings.tos_title -%}
- {{ macros.page_title(title=settings.tos_title) }}
- {%- else -%}
- {{ macros.page_title(title=_('Terms of Service')) }}
- {%- endif %}{% endblock %}
- {% block content %}
- <div class="page-header">
- <h1>{% if settings.tos_title -%}
- {{ settings.tos_title }}
- {%- else -%}
- {% trans %}Terms of Service{% endtrans %}
- {%- endif %}</h1>
- </div>
- <div class="markdown">
- {{ settings.tos_content|markdown|safe }}
- </div>
- {% endblock %}
|