xref: /webtrees/resources/views/modules/statistics-chart/families.phtml (revision 4fbeb707df82fa5025e6110f443695700edd846c)
1<?php
2/** @var \Fisharebest\Webtrees\Statistics $stats */
3?>
4
5<div class="container pt-3">
6    <?= view('statistics/families/total-records', ['stats' => $stats]) ?>
7    <?= view('statistics/families/marriage-length', ['stats' => $stats]) ?>
8    <?= view('statistics/families/marriage-age', ['stats' => $stats]) ?>
9    <?= view('statistics/families/birth-age', ['stats' => $stats]) ?>
10    <?= view('statistics/families/children', ['stats' => $stats]) ?>
11    <?= view('statistics/families/age-difference', ['stats' => $stats]) ?>
12</div>
13