24 lines
520 B
PHP
24 lines
520 B
PHP
|
|
<?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');?>
|