feat: Use card concept for about site
This commit is contained in:
parent
5771968981
commit
4f5022e140
@ -6,25 +6,41 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% if about_us %}
|
{% if about_us %}
|
||||||
|
<div class="card">
|
||||||
<h1>{{ about_us.title }}</h1>
|
<h1>{{ about_us.title }}</h1>
|
||||||
|
<p>
|
||||||
{{ about_us.content | render_markdown }}
|
{{ about_us.content | render_markdown }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<h2>{% translate "Regeln" %}</h2>
|
<h2>{% translate "Regeln" %}</h2>
|
||||||
{% include "fellchensammlung/lists/list-rules.html" %}
|
{% include "fellchensammlung/lists/list-rules.html" %}
|
||||||
|
|
||||||
{% if privacy_statement %}
|
{% if privacy_statement %}
|
||||||
|
<div class="card">
|
||||||
<h2>{{ privacy_statement.title }}</h2>
|
<h2>{{ privacy_statement.title }}</h2>
|
||||||
|
<p>
|
||||||
{{ privacy_statement.content | render_markdown }}
|
{{ privacy_statement.content | render_markdown }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if terms_of_service %}
|
{% if terms_of_service %}
|
||||||
|
<div class="card">
|
||||||
<h2>{{ terms_of_service.title }}</h2>
|
<h2>{{ terms_of_service.title }}</h2>
|
||||||
|
<p>
|
||||||
{{ terms_of_service.content | render_markdown }}
|
{{ terms_of_service.content | render_markdown }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if imprint %}
|
{% if imprint %}
|
||||||
|
<div class="card">
|
||||||
<h2>{{ imprint.title }}</h2>
|
<h2>{{ imprint.title }}</h2>
|
||||||
|
<p>
|
||||||
{{ imprint.content | render_markdown }}
|
{{ imprint.content | render_markdown }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
x
Reference in New Issue
Block a user