2024-01-25 18:34:32 +01:00
|
|
|
<?php snippet('header') ?>
|
2024-03-09 11:27:10 +01:00
|
|
|
|
2024-04-11 10:38:07 +02:00
|
|
|
<main x-data="{ isEditoOpen: false }">
|
2024-03-10 12:03:31 +01:00
|
|
|
<?php snippet('cover', slots: true) ?>
|
|
|
|
|
<?php slot('title') ?>
|
2024-04-11 10:38:07 +02:00
|
|
|
<div class="title-center">
|
|
|
|
|
<button @click="isEditoOpen = !isEditoOpen">
|
|
|
|
|
<h2>
|
|
|
|
|
critique des arts<br>
|
|
|
|
|
et des techniques<br>
|
|
|
|
|
</h2>
|
|
|
|
|
<button
|
2024-04-11 12:46:12 +02:00
|
|
|
class="main-edito-btn | toggle-btn left"
|
|
|
|
|
:class="isEditoOpen ? 'open' : 'close'"
|
2024-04-11 10:38:07 +02:00
|
|
|
>édito</button>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div x-show="isEditoOpen" class="edito">
|
|
|
|
|
<?= $site->edito() ?>
|
|
|
|
|
</div>
|
2024-03-10 12:03:31 +01:00
|
|
|
<?php endslot() ?>
|
|
|
|
|
<?php endsnippet() ?>
|
2024-04-09 10:44:12 +02:00
|
|
|
<?php snippet('nav') ?>
|
2024-01-25 18:34:32 +01:00
|
|
|
</main>
|
|
|
|
|
<?php snippet('footer') ?>
|