feat: section template stacking subpages as anchored articles

This commit is contained in:
2026-05-20 22:44:38 +02:00
parent dd0777e2f5
commit 0658980b6e
+26
View File
@@ -0,0 +1,26 @@
{% extends "base.html" %}
{% block content %}
<section class="single-page-title">
<div class="container text-center hidden-xs">
<h2>{{ section.title }}</h2>
</div>
</section>
<section class="ptb-100">
<div class="container">
{% if section.content %}
<div class="row"><div class="col-md-12">{{ section.content | safe }}</div></div>
{% endif %}
{% for page in section.pages %}
<article id="{{ page.extra.anchor | default(value=page.slug) }}" class="anchor-section">
<h2 class="section-title">{{ page.title }}</h2>
{{ page.content | safe }}
</article>
{% endfor %}
</div>
</section>
{% endblock %}