summaryrefslogtreecommitdiff
path: root/resources/views/record-page-details.phtml
blob: e20e26f219997da587726fb12e9bd20e471e10a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

use Fisharebest\Webtrees\Functions\FunctionsPrintFacts;
use Fisharebest\Webtrees\GedcomRecord;

/**
 * @var GedcomRecord $record
 */

?>

<table class="table wt-facts-table">
    <?php foreach ($record->facts([], true) as $fact) : ?>
        <?php FunctionsPrintFacts::printFact($fact, $record) ?>
    <?php endforeach ?>
</table>