fiso-site/fiso-theme/templates/default.html.twig
2024-10-29 12:47:52 +01:00

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 %}