hic-et-nunc/site/templates/home.php

8 lines
204 B
PHP
Raw Normal View History

2026-04-15 18:58:25 +02:00
<?php snippet('header') ?>
2026-04-15 20:17:12 +02:00
<h1><?= $site->title() ?></h1>
2026-04-15 18:58:25 +02:00
2026-04-15 20:17:12 +02:00
<?php foreach ($site->slideshow()->toFiles() as $image): ?>
<img src="<?= $image->url() ?>">
<?php endforeach; ?>
2026-04-15 18:58:25 +02:00
2026-04-15 20:17:12 +02:00
<?php snippet('footer') ?>