decor-6-site/site/templates/home.php

24 lines
520 B
PHP
Raw Normal View History

2026-01-05 19:33:15 +01:00
<?php snippet('head') ?>
<?php snippet('header') ?>
<?php $sizes = "(min-width: 1200px) 25vw,
(min-width: 900px) 33vw,
(min-width: 600px) 50vw,
100vw";
?>
<main class="home" id="fade">
<section>
<?php foreach($site->index()->filterBy('intendedTemplate', 'chapitre') as $chapitre):?>
<article>
<h2><?= $chapitre->title()->html() ?></h2>
<?= $chapitre->text()->toBlocks() ?>
</article>
<?php endforeach;?>
</section>
</main>
<?php snippet('footer');?>