actuel-inactuel/site/templates/home.php

44 lines
1.2 KiB
PHP
Raw Normal View History

2024-01-25 18:34:32 +01:00
<?php snippet('header') ?>
2024-01-26 11:03:42 +01:00
<main class="top bottom" style="
--top:6;
--bottom: 3;
">
<h2 class="| fs-m fw-light ta-center full-width flex" style="
--content:center;
">
2024-01-25 18:34:32 +01:00
critique des arts<br />
et des techniques
</h2>
<div id="tabs" x-data="{
activeTab: ''
}">
2024-01-26 11:03:42 +01:00
<div class="toggle-btns | top flex space-between" style="
--top:10;
--content:space-between;
">
2024-01-25 18:34:32 +01:00
<button
class="toggle left"
:class="activeTab === 'edito' ? 'open' : 'close'"
@click="[openTab($data, 'edito'), scrollToElem('.content')]"
>éditorial</button>
<button
class="toggle right"
:class="activeTab === 'articles' ? 'open' : 'close'"
@click="[openTab($data, 'articles'), scrollToElem('.content')]"
>articles</button>
</div>
<div class="content">
<article x-show="activeTab === 'edito'">
<?= $site->edito() ?>
</article>
<ul x-show="activeTab === 'articles'">
2024-01-26 07:45:41 +01:00
<?php foreach($site->collections('articles') as $article): ?>
2024-01-25 18:34:32 +01:00
<li class="article">
2024-01-26 07:45:41 +01:00
<?= var_dump($article) ?>
2024-01-25 18:34:32 +01:00
</li>
2024-01-26 07:45:41 +01:00
<?php endforeach ?>
2024-01-25 18:34:32 +01:00
</ul>
</div>
</div>
</main>
<?php snippet('footer') ?>