diff --git a/content/contact.md b/content/contact.md index 06d7be5..cd9a029 100644 --- a/content/contact.md +++ b/content/contact.md @@ -1,38 +1,9 @@ +++ title = "Kontakt" -template = "page.html" +template = "contact.html" weight = 60 +++ -## Praxis am Lienhardplatz - -**Hausärztliche Gemeinschaftspraxis** -Kaiserstr. 23 -42329 Wuppertal-Vohwinkel - -**Telefon:** 0202-730738 -**Telefax:** 0202-730017 -**E-Mail:** [info@praxis-am-lienhardplatz.de](mailto:info@praxis-am-lienhardplatz.de) - -## Sprechzeiten - - - - - - - - - - - - - - -
Montag bis Freitag08:00–10:00 Uhr
Montag, Dienstag, Donnerstag15:00–17:00 Uhr
Infekt-Sprechstunde (täglich)10:30–12:00 Uhr
- -
- **Die Praxis ist nach Termin organisiert.** Bei akuten Erkrankungen ist eine Vorstellung in der Praxis jederzeit möglich. ## Ärztlicher Bereitschaftsdienst diff --git a/templates/contact.html b/templates/contact.html new file mode 100644 index 0000000..155ea5b --- /dev/null +++ b/templates/contact.html @@ -0,0 +1,43 @@ +{% extends "base.html" %} +{% import "macros/page_title.html" as pt %} + +{% block content %} + +{{ pt::page_title(title=page.title) }} + +
+
+ +

{{ config.extra.practice_name }}

+ +

+ Hausärztliche Gemeinschaftspraxis
+ {{ config.extra.address_street }}
+ {{ config.extra.address_zip_city }} +

+ +

+ Telefon: {{ config.extra.phone }}
+ Telefax: {{ config.extra.fax }}
+ E-Mail: {{ config.extra.email }} +

+ +

Sprechzeiten

+ + + {% for h in config.extra.opening_hours %} + + + + + {% endfor %} +
{{ h.label }}{{ h.time }} Uhr
+ +
+ + {{ page.content | safe }} + +
+
+ +{% endblock %}