1
0
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
d32cb7a5c2 Update CSS 2023-08-28 20:45:31 +02:00
c92fe47ed3 Update address 2023-08-28 20:45:13 +02:00
7 changed files with 12 additions and 10 deletions

View file

@ -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"

View file

@ -1,7 +1,7 @@
{
"devDependencies": {
"leaflet": "^1.9.4",
"rustywind": "^0.16.0",
"tailwindcss": "^3.3.2"
"rustywind": "^0.19.0",
"tailwindcss": "^3.3.3"
}
}

File diff suppressed because one or more lines are too long

View file

@ -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>

View file

@ -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: '&copy; <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 %}

View file

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

View file

@ -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>