xref: /webtrees/resources/views/modules/lightbox/tab.phtml (revision 4e54fb47ea2fc584c07c0c135853d49a85735c1a)
17c2c99faSGreg Roach<?php
27c2c99faSGreg Roach
310e06497SGreg Roachdeclare(strict_types=1);
410e06497SGreg Roach
57c2c99faSGreg Roachuse Fisharebest\Webtrees\Media;
67c2c99faSGreg Roachuse Illuminate\Support\Collection;
77c2c99faSGreg Roach
87c2c99faSGreg Roach/**
936779af1SGreg Roach * @var Collection<int,Media> $media_list
107c2c99faSGreg Roach */
117c2c99faSGreg Roach
127c2c99faSGreg Roach?>
13*4e54fb47SGreg Roach<div class="wt-tab-album">
14dd6b2bfcSGreg Roach    <?php foreach ($media_list as $media) : ?>
15dd6b2bfcSGreg Roach        <figure class="figure text-center col-sm-6 col-md-4 col-lg-3 col-xl-2 wt-album-tab-figure">
16dd6b2bfcSGreg Roach            <?php foreach ($media->mediaFiles() as $media_file) : ?>
17dd6b2bfcSGreg Roach                <?= $media_file->displayImage(100, 100, 'contain', ['class' => 'img-thumbnail wt-album-tab-image']) ?>
18dd6b2bfcSGreg Roach            <?php endforeach ?>
19dd6b2bfcSGreg Roach            <figcaption class="figure-caption wt-album-tab-caption">
20dd6b2bfcSGreg Roach                <a href="<?= e($media->url()) ?>">
2139ca88baSGreg Roach                    <?= $media->fullName() ?>
22dd6b2bfcSGreg Roach                </a>
23dd6b2bfcSGreg Roach            </figcaption>
24dd6b2bfcSGreg Roach        </figure>
25dd6b2bfcSGreg Roach    <?php endforeach ?>
26dd6b2bfcSGreg Roach</div>
27