decarbone/site/templates/home.php

24 lines
919 B
PHP
Raw Normal View History

2026-02-13 15:40:11 +01:00
<?php snippet('header') ?>
<div id="first-level" class="layer current home">
<a href="<?= $site->homePage()->url() ?>" class="layer-btn unvisible internal-link" title="retourner à l'accueil" data-size="Accueil">Accueil</a>
<div class="content-background">
<h2 id="logo">decarb.one</h2>
<?php foreach ($site->body()->toLayouts() as $layout): ?>
<section class="row" id="<?= $layout->id() ?>">
<?php foreach ($layout->columns() as $column): ?>
<div class="column" style="--span:<?= $column->span() ?>">
<div class="blocks">
<?php foreach($column->blocks() as $block): ?>
<?= $block ?>
<?php endforeach ?>
</div>
</div>
<?php endforeach ?>
</section>
<?php endforeach ?>
</div>
</div>
<div id="second-level" class="layer out-screen">
</div>
<div id="third-level" class="layer out-screen"></div>
<?php snippet('footer') ?>