From 91c0d53b8d1ffcd594aab5e6270a98d5096d00e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Schulz-Andres?= Date: Tue, 18 Aug 2026 12:48:19 +0200 Subject: [PATCH] feat: seo: add structured metadata for better searchability --- templates/_base.html | 26 +++++++++++++++++++++++-- templates/index.html | 43 +++++++++++++++++++++++++++++++++++++++++ templates/index_en.html | 43 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 110 insertions(+), 2 deletions(-) diff --git a/templates/_base.html b/templates/_base.html index 6252999..5fcdaa1 100644 --- a/templates/_base.html +++ b/templates/_base.html @@ -5,15 +5,36 @@ + {% if lang == "en" %} + {% set default_description = "Munich Embedded 2026 – conference for testing, security and reliability in embedded systems. October 27, 2026 at WERK1, Munich. Talks, lightning talks and networking with around 100 embedded experts." %} + {% else %} + {% set default_description = "Munich Embedded 2026 – Konferenz für Testing, Sicherheit und Zuverlässigkeit im Embedded-Bereich. 27. Oktober 2026 im WERK1, München. Vorträge, Lightning Talks und Austausch mit rund 100 Embedded-Experten." %} + {% endif %} {% block page_title %}Munich Embedded{% endblock %} + + + {% if current_path %} + {% if current_path is starting_with("/en/") %} + {% set de_path = current_path | trim_start_matches(pat="/en") %} + {% else %} + {% set de_path = current_path %} + {% endif %} + + + + + {% endif %} + + + - + @@ -23,7 +44,7 @@ - + @@ -43,6 +64,7 @@ "url": "https://www.munich-embedded.com/" } + {% block event_jsonld %}{% endblock %} +{% endblock %} + {% block content %}
diff --git a/templates/index_en.html b/templates/index_en.html index b9a4f54..51ad8ba 100644 --- a/templates/index_en.html +++ b/templates/index_en.html @@ -1,5 +1,48 @@ {% extends "_base.html" %} +{% block page_title %}Munich Embedded 2026 – Embedded Testing & Security Conference | Oct 27, 2026, Munich{% endblock %} +{% block og_title %}Munich Embedded 2026 – Embedded Testing & Security Conference | Oct 27, 2026, Munich{% endblock %} +{% block twitter_title %}Munich Embedded 2026 – Embedded Testing & Security Conference | Oct 27, 2026, Munich{% endblock %} + +{% block event_jsonld %} + +{% endblock %} + {% block content %}