xref: /webtrees/resources/views/modals/shares.phtml (revision 853f2b8ab920254b02a6cbbe9d6bf1f5c4486e2f)
1*853f2b8aSGreg Roach<?php
2*853f2b8aSGreg Roach
3*853f2b8aSGreg Roach/**
4*853f2b8aSGreg Roach * @var Collection<string> $shares
5*853f2b8aSGreg Roach * @var string             $title
6*853f2b8aSGreg Roach */
7*853f2b8aSGreg Roach
8*853f2b8aSGreg Roachuse Illuminate\Support\Collection;
9*853f2b8aSGreg Roach
10*853f2b8aSGreg Roach?>
11*853f2b8aSGreg Roach<div class="modal fade" id="wt-shares-modal" tabindex="-1" role="dialog" aria-label="<?= e($title) ?>" aria-hidden="true">
12*853f2b8aSGreg Roach    <div class="modal-dialog modal-lg" role="document">
13*853f2b8aSGreg Roach        <div class="modal-content">
14*853f2b8aSGreg Roach            <?= view('modals/header', ['title' => $title]) ?>
15*853f2b8aSGreg Roach
16*853f2b8aSGreg Roach            <div class="modal-body">
17*853f2b8aSGreg Roach                <div class="wt-share-list">
18*853f2b8aSGreg Roach                    <?php foreach ($shares as $share): ?>
19*853f2b8aSGreg Roach                        <div class="wt-share-item">
20*853f2b8aSGreg Roach                            <?= $share ?>
21*853f2b8aSGreg Roach                        </div>
22*853f2b8aSGreg Roach                    <?php endforeach ?>
23*853f2b8aSGreg Roach                </div>
24*853f2b8aSGreg Roach            </div>
25*853f2b8aSGreg Roach
26*853f2b8aSGreg Roach            <?= view('modals/footer-close') ?>
27*853f2b8aSGreg Roach        </div>
28*853f2b8aSGreg Roach    </div>
29*853f2b8aSGreg Roach</div>
30