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