xref: /webtrees/resources/views/record-page-details.phtml (revision 4d35caa736b1f4119b8a949d1cbca5644dbf4e23)
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