Update address
This commit is contained in:
parent
390b7722de
commit
c92fe47ed3
5 changed files with 9 additions and 7 deletions
|
@ -2,10 +2,13 @@
|
|||
base_url = "https://yinghong-massage.de"
|
||||
|
||||
title = "Ying Yang Massage"
|
||||
description = "Ferdinand-Remy-Str. 23, 56859 Alf"
|
||||
author = "Yinghong Yang"
|
||||
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
|
||||
build_search_index = false
|
||||
|
||||
|
@ -18,7 +21,6 @@ portrait_path = "images/index/portrait.jpeg"
|
|||
appointment_image_filename = "image.jpg"
|
||||
|
||||
# Kontakt
|
||||
address = "Ferdinand-Remy-Str. 23, 56859 Alf"
|
||||
mobile_number = "0176 4474 8221"
|
||||
phone_number = "06542-9690619"
|
||||
email = "yinghong-yang@protonmail.com"
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
<div class="mb-3 w-full bg-black/60">
|
||||
<div class="py-2 px-4 mx-auto max-w-screen-xl text-white">
|
||||
<h1>{{ config.title }}</h1>
|
||||
<h5>{{ config.extra.address }}</h5>
|
||||
<h5>{{ config.description }}</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<script>
|
||||
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', {
|
||||
center: center,
|
||||
zoom: 17,
|
||||
|
@ -42,6 +42,6 @@
|
|||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a>'
|
||||
}).addTo(map);
|
||||
|
||||
L.marker(center).addTo(map).bindPopup("{{ config.extra.address }}").openPopup();
|
||||
L.marker(center).addTo(map).bindPopup("{{ config.description }}").openPopup();
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
|
|
@ -1 +1 @@
|
|||
{{ config.extra.address }}
|
||||
{{ config.description }}
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<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>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue