xref: /webtrees/resources/views/modules/compact-chart/arrow-up.phtml (revision 39b853a722152c34a2296a4ba977eff2dadf19a2)
1d993d560SGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2d993d560SGreg Roach
3d993d560SGreg Roach<?php if ($individual === null) : ?>
4d993d560SGreg Roach    <?= view('icons/arrow-up') ?>
5d993d560SGreg Roach<?php else : ?>
6*39b853a7SGreg Roach    <a href="<?= e(route('compact-tree', ['xref' => $individual->xref(), 'ged' => $individual->tree()->name()])) ?>" title="<?= I18N::translate('Compact tree of %s', strip_tags($individual->getFullName())) ?>">
7*39b853a7SGreg Roach        <?= view('icons/arrow-up') ?>
8*39b853a7SGreg Roach    </a>
9d993d560SGreg Roach<?php endif;
10