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