xref: /webtrees/resources/views/modules/stories/list.phtml (revision b6c326d8b8798b83b744c4d4a669df5aa9f3e0c2)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach
3dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
4dd6b2bfcSGreg Roach
5*b6c326d8SGreg Roach<table class="table table-bordered w-100">
6dd6b2bfcSGreg Roach    <thead>
7dd6b2bfcSGreg Roach        <tr>
8dd6b2bfcSGreg Roach            <th><?= I18N::translate('Story title') ?></th>
9dd6b2bfcSGreg Roach            <th><?= I18N::translate('Individual') ?></th>
10dd6b2bfcSGreg Roach        </tr>
11dd6b2bfcSGreg Roach    </thead>
12dd6b2bfcSGreg Roach    <tbody>
13dd6b2bfcSGreg Roach        <?php foreach ($stories as $story) : ?>
14dd6b2bfcSGreg Roach            <tr>
15dd6b2bfcSGreg Roach                <td>
16dd6b2bfcSGreg Roach                    <?= e($story->title) ?>
17dd6b2bfcSGreg Roach                </td>
18dd6b2bfcSGreg Roach                <td>
19dd6b2bfcSGreg Roach                    <a href="<?= e($story->individual->url()) ?>#tab-stories">
2039ca88baSGreg Roach                        <?= $story->individual->fullName() ?>
21dd6b2bfcSGreg Roach                    </a>
22dd6b2bfcSGreg Roach                </td>
23dd6b2bfcSGreg Roach            </tr>
24dd6b2bfcSGreg Roach        <?php endforeach ?>
25dd6b2bfcSGreg Roach    </tbody>
26dd6b2bfcSGreg Roach</table>
27