summaryrefslogtreecommitdiff
path: root/resources/views/modules/todays_events/list.phtml
blob: 2926991a3e11c02d51c9cc836fcd5f4e6e2aede8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php use Fisharebest\Webtrees\I18N; ?>
<?php use Fisharebest\Webtrees\Individual; ?>

<?php foreach ($facts as $fact) : ?>
    <?php $record = $fact->record(); ?>
    <a href="<?= e($record->url()) ?>" class="list_item name2">
        <?= $record->getFullName() ?>
    </a>
    <?php if ($record instanceof Individual) : ?>
        <?= $record->getSexImage() ?>
    <?php endif ?>
    <div class="indent">
        <?= $fact->label() . ' — ' . $fact->date()->display(true); ?>
        <?= ' (' . I18N::timeAgo($fact->anniv * 365 * 24 * 60 * 60) . ')'; ?>
        <?php if (!$fact->place()->isEmpty()) : ?>
            <?= ' — <a href="' . e($fact->place()->url()) . '">' . $fact->place()->fullName() . '</a>'; ?>
        <?php endif ?>
    </div>
<?php endforeach ?>