16 lines
360 B
Twig
16 lines
360 B
Twig
{% extends "base.twig" %}
|
|
|
|
{% block main %}
|
|
<main>
|
|
|
|
<section class="about-section">
|
|
|
|
<article class="about">
|
|
<h2 class="about__title">{{ page.title }}</h2>
|
|
<div class="about__presentation">{{ page.text.kirbytext|raw }}</div>
|
|
</article>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
{% endblock %}
|