1
0
Fork 0

Replace single.html with page.html

This commit is contained in:
Mo 2023-05-30 16:03:02 +02:00
parent 17559fcaa8
commit ed5856c233
6 changed files with 3 additions and 8 deletions

View file

@ -1,4 +1,4 @@
+++
title = "Unser Angebot"
template = "offers.tera.html"
template = "offers.html"
+++

View file

@ -1,6 +1,5 @@
+++
title = "Datenschutzerklärung"
template = "single.tera.html"
+++
<h4>Datenschutzerklärung</h4>

View file

@ -1,6 +1,5 @@
+++
title = "Impressum"
template = "single.tera.html"
+++
#### Yinghong Yang

View file

@ -1,6 +1,5 @@
+++
title = "Kontakt"
template = "single.tera.html"
+++
{{ contact() }}

View file

@ -1,6 +1,6 @@
+++
title = "Terminvereinbarung"
template = "appointment.tera.html"
template = "appointment.html"
+++
Vereinbaren Sie frühzeitig einen Termin, indem Sie eine Nachricht auf WhatsApp/Signal schreiben. Sie können auch eine E-Mail schreiben oder anrufen.

View file

@ -1,9 +1,7 @@
{% extends "base.html" %}
{% block content %}
<h2 class="h2 text-center">{{ page.title }}</h2>
<br>
<h2 class="text-center">{{ page.title }}</h2>
{{ page.content | safe }}
{% endblock %}