441f3b7ed9
- 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)
22 lines
381 B
HTML
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 %}
|