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