xref: /webtrees/resources/views/components/datetime-diff.phtml (revision c5b48766684db09f7f8372612300a247ec6929e4)
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