nopaque/app/templates/main/terms_of_use.html.j2

21 lines
603 B
Plaintext
Raw Permalink Normal View History

{% extends "base.html.j2" %}
2020-10-30 14:01:41 +00:00
2020-07-03 09:17:47 +00:00
{% block page_content %}
2020-10-23 06:51:46 +00:00
<div class="container">
2024-12-23 13:49:06 +00:00
<h1 id="title">{{ title }}</h1>
<ul class="tabs tabs-fixed-width z-depth-1">
<li class="tab"><a class="active" href="#terms-of-use-page-content-german">German</a></li>
<li class="tab"><a href="#terms-of-use-page-content-english">English</a></li>
</ul>
<div id="terms-of-use-page-content-german">
{% include "main/_terms_of_use/german.html.j2" %}
</div>
<div id="terms-of-use-page-content-english">
{% include "main/_terms_of_use/english.html.j2" %}
2020-07-03 09:17:47 +00:00
</div>
</div>
2021-12-01 13:15:20 +00:00
{% endblock page_content %}