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" title = "Unser Angebot"
template = "offers.tera.html" template = "offers.html"
+++ +++

View file

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

View file

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

View file

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

View file

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