From 733d7fea615924123360257f8a66062e122cdf93 Mon Sep 17 00:00:00 2001 From: Brummel Date: Wed, 20 May 2026 22:26:25 +0200 Subject: [PATCH] feat: zola skeleton with placeholder index Co-Authored-By: Claude Sonnet 4.6 --- config.toml | 18 ++++++++++++++++++ content/_index.md | 6 ++++++ templates/index.html | 8 ++++++++ 3 files changed, 32 insertions(+) create mode 100644 config.toml create mode 100644 content/_index.md create mode 100644 templates/index.html diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..fce5ad9 --- /dev/null +++ b/config.toml @@ -0,0 +1,18 @@ +base_url = "https://preview.praxis-am-lienhardplatz.de" +title = "Praxis am Lienhardplatz" +description = "Dr. Oliver Riemann, Dr. Angela Krey und Christian Malyga begrüßen Sie in der Hausärztlichen Gemeinschaftspraxis am Lienhardplatz in Wuppertal-Vohwinkel" +default_language = "de" +compile_sass = true +build_search_index = false +generate_feeds = false + +[markdown] +external_links_target_blank = false +smart_punctuation = false + +[extra] +# Site-wide values pulled into templates +practice_name = "Praxis am Lienhardplatz" +doctors = "Dr. Oliver Riemann, Dr. Angela Krey, Christian Malyga" +address = "Lienhardplatz 1, 42329 Wuppertal-Vohwinkel" +phone = "+49 202 123456" # TODO replace with actual number from contact page during Task 19 diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..9e93e75 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Home" +template = "index.html" ++++ + +Skeleton placeholder. Real content lands in Task 12. diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..e5545b9 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,8 @@ + + +{{ config.title }} + +

{{ config.title }}

+

{{ section.content | safe }}

+ +