Initial commit

This commit is contained in:
sarahgarcin1 2026-01-05 19:33:15 +01:00
commit 388079e6bb
1108 changed files with 330121 additions and 0 deletions

View file

@ -0,0 +1,15 @@
<?php snippet('head') ?>
<?php snippet('header') ?>
<main class="default__page" id="fade">
<div class="default__page__wrapper">
<h1><?= $page->title()->html()->smartypants()?></h1>
<?php foreach ($page->text()->toBlocks() as $block): ?>
<div id="<?= $block->id() ?>" class="block block-type-<?= $block->type() ?>">
<?= $block ?>
</div>
<?php endforeach ?>
</div>
</main>
<?php snippet('footer');?>