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