Files
praxis-page/templates/page.html
T
Brummel 441f3b7ed9 feat: legal (Impressum), contact, page template, and map shortcode
- page.html generic single-page template
- legal.md with slug=impressum to match live URL
- contact.md with practice info, hours, map embed
- map shortcode (iframe-based) usable from markdown
- Home template inlines the map iframe directly (shortcodes can't be called from templates)
2026-05-20 22:49:02 +02:00

22 lines
381 B
HTML

{% extends "base.html" %}
{% block content %}
<section class="single-page-title">
<div class="container text-center hidden-xs">
<h2>{{ page.title }}</h2>
</div>
</section>
<section class="ptb-100">
<div class="container">
<div class="row">
<div class="col-md-12">
{{ page.content | safe }}
</div>
</div>
</div>
</section>
{% endblock %}