23 lines
768 B
PHP
23 lines
768 B
PHP
<?php snippet('header') ?>
|
|
|
|
<div id="home-slideshow">
|
|
<?php foreach ($site->files()->sortBy('sort') as $file): ?>
|
|
<?php if ($file->type() === 'video'): ?>
|
|
<video autoplay muted loop playsinline data-id="<?= $file->uuid() ?>">
|
|
<source src="<?= $file->url() ?>" type="<?= $file->mime() ?>">
|
|
</video>
|
|
<?php else: ?>
|
|
<?php snippet('picture', [
|
|
'file' => $file,
|
|
'srcsetName' => 'home-slideshow',
|
|
'sizes' => '100vw',
|
|
'lazy' => false,
|
|
]) ?>
|
|
<?php endif ?>
|
|
<?php endforeach ?>
|
|
<button class="prev"></button>
|
|
<button class="next"></button>
|
|
</div>
|
|
|
|
<script src="/assets/js/home-slideshow.js"></script>
|
|
<?php snippet('footer') ?>
|