2022-05-31 16:01:28 +02:00
|
|
|
{% extends "base.twig" %}
|
|
|
|
|
|
|
|
{% block main %}
|
2022-07-07 17:02:05 +02:00
|
|
|
<main>
|
2022-05-31 16:01:28 +02:00
|
|
|
|
2022-07-07 17:02:05 +02:00
|
|
|
<section class="biography-section">
|
2022-05-31 16:01:28 +02:00
|
|
|
|
2022-07-07 17:02:05 +02:00
|
|
|
<article class="biography">
|
|
|
|
<h2 class="biography__title">{{ page.title }}</h2>
|
|
|
|
<div class="biography__presentation">{{ page.text.kirbytext|raw }}</div>
|
|
|
|
</article>
|
2022-05-31 16:01:28 +02:00
|
|
|
|
2022-07-07 17:02:05 +02:00
|
|
|
</section>
|
2022-05-31 16:01:28 +02:00
|
|
|
|
2022-07-07 17:02:05 +02:00
|
|
|
</main>
|
2022-05-31 16:01:28 +02:00
|
|
|
{% endblock %}
|