12 lines
341 B
Twig
12 lines
341 B
Twig
|
{% extends 'partials/base.html.twig' %}
|
||
|
|
||
|
{% block body %}
|
||
|
<div class="bg-white overflow-hidden shadow sm:rounded-lg">
|
||
|
<div class="px-4 py-5 sm:p-6">
|
||
|
<h1 class="text-2xl font-header font-bold text-fisoSecondary">{{ page.title }}</h1>
|
||
|
<div class="mt-6 grav-body-styling">
|
||
|
{{ page.content | raw }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|