xref: /webtrees/resources/views/record-page-details.phtml (revision 99125a335d0be11b975e213c69fc4ede0c5303f1)
1<?php
2
3use Fisharebest\Webtrees\Functions\FunctionsPrintFacts;
4use Fisharebest\Webtrees\GedcomRecord;
5
6/**
7 * @var GedcomRecord $record
8 */
9
10?>
11
12<table class="table wt-facts-table">
13    <?php foreach ($record->facts([], true) as $fact) : ?>
14        <?php FunctionsPrintFacts::printFact($fact, $record) ?>
15    <?php endforeach ?>
16</table>
17