xref: /webtrees/resources/views/modules/stories/list.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
67c2c99faSGreg Roachuse Illuminate\Support\Collection;
77c2c99faSGreg Roach
87c2c99faSGreg Roach/**
936779af1SGreg Roach * @var Collection<int,object> $stories
107c2c99faSGreg Roach * @var string                 $title
117c2c99faSGreg Roach */
12d70512abSGreg Roach
13d70512abSGreg Roach?>
14dd6b2bfcSGreg Roach
15dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
16dd6b2bfcSGreg Roach
17b6c326d8SGreg Roach<table class="table table-bordered w-100">
18dd6b2bfcSGreg Roach    <thead>
19dd6b2bfcSGreg Roach        <tr>
20dd6b2bfcSGreg Roach            <th><?= I18N::translate('Story title') ?></th>
21dd6b2bfcSGreg Roach            <th><?= I18N::translate('Individual') ?></th>
22dd6b2bfcSGreg Roach        </tr>
23dd6b2bfcSGreg Roach    </thead>
24dd6b2bfcSGreg Roach    <tbody>
25dd6b2bfcSGreg Roach        <?php foreach ($stories as $story) : ?>
26dd6b2bfcSGreg Roach            <tr>
27dd6b2bfcSGreg Roach                <td>
28dd6b2bfcSGreg Roach                    <?= e($story->title) ?>
29dd6b2bfcSGreg Roach                </td>
30dd6b2bfcSGreg Roach                <td>
31dd6b2bfcSGreg Roach                    <a href="<?= e($story->individual->url()) ?>#tab-stories">
3239ca88baSGreg Roach                        <?= $story->individual->fullName() ?>
33dd6b2bfcSGreg Roach                    </a>
34dd6b2bfcSGreg Roach                </td>
35dd6b2bfcSGreg Roach            </tr>
36dd6b2bfcSGreg Roach        <?php endforeach ?>
37dd6b2bfcSGreg Roach    </tbody>
38dd6b2bfcSGreg Roach</table>
39