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