diff --git a/config.toml b/config.toml index 79c06d5..b247803 100644 --- a/config.toml +++ b/config.toml @@ -8,11 +8,22 @@ compile_sass = false [extra] logo_path = "images/logo.png" -portrait_path = "images/index/portrait.jpeg" -# Custom colors for navigation bar, footer, h1 tags, etc. -primary_color = "#6db9a5" -secondary_color = "#6e0000" +portrait_path = "images/index/portrait.jpeg" +self_introduction = "Ich bin Yinghong Yang, komme aus China und lebe und arbeite seit langem in Deutschland. Massagen haben mir in meinem Leben oft geholfen, Stress und Verspannungen abzubauen, sodass ich es auch erlernen wollte, um anderen Menschen zu helfen. Ich habe zweimal in einem Pariser-Massage-Spa gelernt und gearbeitet. Hier in Deutschland habe ich meine Massagetechniken kontinuierlich, mit verschiedenen Lehrenden, weiterentwickelt und verfeinert. Für mehrere Jahre arbeitete ich in einem sehr guten traditionellen Thaimassge-Spa und konnte dort viele Erfahrungen und verschiedene Massagetechniken sammeln. Jetzt betreibe ich meinen eigenen Massage-Salon und freue mich auf Ihren Besuch!" + +# The name of the image file in the directory content/termin +appointment_image_filename = "image.jpg" + +# Custom colors for navigation bar, footer, etc. +primary_color = "#B2DEA7" +secondary_color = "#710802" + +# Kontakt +address = "Ferdinand-Remy-Str. 23, 56859 Alf" +mobile_number = "0176 4474 8221" +phone_number = "06542-9690619" +email = "yinghong-yang@protonmail.com" # Menu [[extra.menu_items]] diff --git a/templates/appointment.tera.html b/templates/appointment.tera.html new file mode 100644 index 0000000..f8bb1a8 --- /dev/null +++ b/templates/appointment.tera.html @@ -0,0 +1,27 @@ +{% extends "base.tera.html" %} + +{% block content %} +

+ {{ page.title }} +

+ +
+ +
+
+ {% set dir = page.path | trim_start_matches(pat="/") %} + {% set image_path = dir ~ config.extra.appointment_image_filename %} + {% set image = resize_image(path=image_path, width=500, height=500, op="fill") %} + + +
+
+
+ {{ page.content | safe }} +
+
+
+{% endblock content %} diff --git a/templates/base.tera.html b/templates/base.tera.html index 124794f..e5855a2 100644 --- a/templates/base.tera.html +++ b/templates/base.tera.html @@ -23,6 +23,22 @@ + + + + {% block styles %}{% endblock styles %} {% include "partials/nav.tera.html" %} @@ -31,6 +47,8 @@
{% block content %}{% endblock content %} + +