Edit about/biography page title, slug and template

This commit is contained in:
Paul Nicoué 2022-05-31 16:01:28 +02:00
parent 63e3b2dbf7
commit 8912f8ea29
12 changed files with 51 additions and 43 deletions

View file

@ -1,16 +0,0 @@
{% 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 %}

View file

@ -0,0 +1,16 @@
{% extends "base.twig" %}
{% block main %}
<main>
<section class="biography-section">
<article class="biography">
<h2 class="biography__title">{{ page.title }}</h2>
<div class="biography__presentation">{{ page.text.kirbytext|raw }}</div>
</article>
</section>
</main>
{% endblock %}