1
0
Fork 0

Update address

This commit is contained in:
Mo 2023-08-28 20:45:13 +02:00
parent 390b7722de
commit c92fe47ed3
5 changed files with 9 additions and 7 deletions

View file

@ -2,10 +2,13 @@
base_url = "https://yinghong-massage.de" base_url = "https://yinghong-massage.de"
title = "Ying Yang Massage" title = "Ying Yang Massage"
description = "Ferdinand-Remy-Str. 23, 56859 Alf"
author = "Yinghong Yang" author = "Yinghong Yang"
lang = "de" lang = "de"
# THE ADDRESS
# Make sure to change the latitude and longitude on the map after changing this address.
description = "Mühlenstraße 69, 56859 Alf"
compile_sass = false compile_sass = false
build_search_index = false build_search_index = false
@ -18,7 +21,6 @@ portrait_path = "images/index/portrait.jpeg"
appointment_image_filename = "image.jpg" appointment_image_filename = "image.jpg"
# Kontakt # Kontakt
address = "Ferdinand-Remy-Str. 23, 56859 Alf"
mobile_number = "0176 4474 8221" mobile_number = "0176 4474 8221"
phone_number = "06542-9690619" phone_number = "06542-9690619"
email = "yinghong-yang@protonmail.com" email = "yinghong-yang@protonmail.com"

View file

@ -36,7 +36,7 @@
<div class="mb-3 w-full bg-black/60"> <div class="mb-3 w-full bg-black/60">
<div class="py-2 px-4 mx-auto max-w-screen-xl text-white"> <div class="py-2 px-4 mx-auto max-w-screen-xl text-white">
<h1>{{ config.title }}</h1> <h1>{{ config.title }}</h1>
<h5>{{ config.extra.address }}</h5> <h5>{{ config.description }}</h5>
</div> </div>
</div> </div>
</div> </div>

View file

@ -29,7 +29,7 @@
<script> <script>
L.Icon.Default.imagePath = "{{ get_url(path='leaflet/images/', trailing_slash=true) | safe }}"; L.Icon.Default.imagePath = "{{ get_url(path='leaflet/images/', trailing_slash=true) | safe }}";
var center = L.latLng(50.05635, 7.12507); var center = L.latLng(50.05427, 7.11814);
var map = L.map('map', { var map = L.map('map', {
center: center, center: center,
zoom: 17, zoom: 17,
@ -42,6 +42,6 @@
attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>' attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>'
}).addTo(map); }).addTo(map);
L.marker(center).addTo(map).bindPopup("{{ config.extra.address }}").openPopup(); L.marker(center).addTo(map).bindPopup("{{ config.description }}").openPopup();
</script> </script>
{% endblock %} {% endblock %}

View file

@ -1 +1 @@
{{ config.extra.address }} {{ config.description }}

View file

@ -21,7 +21,7 @@
</tr> </tr>
<tr> <tr>
<th class="p-1.5">Adresse:</th> <th class="p-1.5">Adresse:</th>
<td class="p-1.5">{{ config.extra.address }}</td> <td class="p-1.5">{{ config.description }}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>