summaryrefslogtreecommitdiff
path: root/resources/views/modules/todays_events/list.php
blob: dd48eb4872b93a8ad1edbf274271ea94a848884c (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->getParent(); ?>
	<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->getLabel() . ' — ' . $fact->getDate()->display(true); ?>
		<?= ' (' . I18N::timeAgo($fact->anniv * 365 * 24 * 60 * 60) . ')'; ?>
		<?php if (!$fact->getPlace()->isEmpty()): ?>
			<?= ' — <a href="' . $fact->getPlace()->getURL() . '">' . $fact->getPlace()->getFullName() . '</a>'; ?>
		<?php endif ?>
	</div>
<?php endforeach ?>