1
0
Fork 0

Add opening hours

This commit is contained in:
Mo 2022-10-29 21:12:25 +02:00
parent d31e31151b
commit 06e224e62e
2 changed files with 26 additions and 3 deletions

View file

@ -6,5 +6,3 @@ template = "appointment.tera.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.
{{ contact() }} {{ contact() }}
Wir freuen uns auf Ihren Besuch!

View file

@ -11,7 +11,7 @@
<div class="col d-flex align-content-center flex-wrap" style="min-width: 300px;"> <div class="col d-flex align-content-center flex-wrap" style="min-width: 300px;">
{% set dir = page.path | trim_start_matches(pat="/") %} {% set dir = page.path | trim_start_matches(pat="/") %}
{% set image_path = dir ~ config.extra.appointment_image_filename %} {% set image_path = dir ~ config.extra.appointment_image_filename %}
{% set image = resize_image(path=image_path, width=500, height=500, op="fill") %} {% set image = resize_image(path=image_path, width=520, height=520, op="fill") %}
<img <img
src="{{ image.url }}" src="{{ image.url }}"
@ -21,6 +21,31 @@
<div class="col d-flex align-content-center flex-wrap ms-5 me-5 mt-3" style="min-width: 300px;"> <div class="col d-flex align-content-center flex-wrap ms-5 me-5 mt-3" style="min-width: 300px;">
<div> <div>
{{ page.content | safe }} {{ page.content | safe }}
<div class="text-center pt-3">
<h4 class="h4">Öffnungszeiten</h4>
<div class="d-inline-flex">
<table class="table">
<tbody>
<tr>
<th class="pe-3" scope="row">Mo. Mi. Do.</th>
<td class="ps-3">09:00 - 19:30 Uhr</td>
</tr>
<tr>
<th class="pe-3" scope="row">Di. Fr.</th>
<td class="ps-3">09:00 - 17:30 Uhr</td>
</tr>
<tr>
<th class="pe-3" scope="row">Sa.</th>
<td class="ps-3">10:00 - 16:30 Uhr</td>
</tr>
</tbody>
</table>
</div>
<p class="pt-3">Wir freuen uns auf Ihren Besuch!</p>
</div>
</div> </div>
</div> </div>
</div> </div>