1<?php 2 3declare(strict_types=1); 4 5use Fisharebest\Webtrees\View; 6 7/** 8 * @var string $html 9 * @var string $js 10 */ 11 12?> 13 14<div class="wt-tab-tree"> 15 <?= $html ?> 16</div> 17 18<?php View::push('javascript') ?> 19<script> 20 <?= $js ?> 21</script> 22<?php View::endpush() ?> 23