nouveau-theatre-de-besancon/site/templates/home.php
2024-07-31 11:20:08 +02:00

33 lines
No EOL
883 B
PHP

<?php snippet('header') ?>
<section class="hero">
<div class="hero__text">
<?= $site->heroText()->toBlocks() ?>
</div>
<div class="hero__image">
<?php snippet('picture', ['file' => $site->heroImage()->toFile()]) ?>
</div>
</section>
<?php snippet('calendar-strip') ?>
<?php
$currentSeason = page('programme')->children()->first()->children();
$orderedEvents = $currentSeason->sortBy(function ($event) {
if ($event->isMapadoEvent() == 'true') {
return $event->remoteSessions()->toStructure()->toArray()[0]['date'];
} else {
return $event->sessions()->toStructure()->toArray()[0]['date'];
}
},
'asc'
);
snippet('events-grid', ['events' => $orderedEvents->slice(0, 2)])
?>
<?php snippet('newsletter-section') ?>
<?php snippet('events-grid', ['events' => $orderedEvents->slice(2, 5)]) ?>
<?php snippet('footer') ?>