nouveau-theatre-de-besancon/site/templates/search.php
2024-09-12 14:57:54 +02:00

27 lines
No EOL
795 B
PHP

<?php snippet('header') ?>
<section>
<?php if ($query): ?>
<?php if ($results->count() === 0): ?>
<h1>Pas de résultats pour '<?= $query ?>'</h1>
<?php else: ?>
<h1>Résultats pour '<?= $query ?>'</h1>
<?php endif ?>
<?php else: ?>
<h1><?= $page->title() ?></h1>
<?php endif ?>
</section>
<?php if ($query): ?>
<?php snippet('events-grid', ['events' => $results, 'columns' => 3]) ?>
<?php else: ?>
<section class="search">
<form class="search-form">
<input class="search-input" type="search" aria-label="Search" name="q" value="<?= html($query) ?>" autofocus>
<button class="search-submit" type="submit"><img src="/assets/images/icons/search.svg" alt=""></button>
</form>
</section>
<?php endif ?>
<?php snippet('footer') ?>