xref: /webtrees/resources/views/components/datetime-diff.phtml (revision 3028bd71d6bd80b68cad94498ce51ff20f591ad5)
1<?php
2
3use Fisharebest\Webtrees\Timestamp;
4
5/**
6 * @var Timestamp $timestamp
7 */
8?>
9
10<span class="wt-timestamp" title="<?= e($timestamp->isoFormat('LLLL')) ?>" dir="auto">
11    <?= e($timestamp->diffForHumans()) ?>
12</span>
13