1d70512abSGreg Roach<?php 2d70512abSGreg Roach 3*8e0e1b25SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\TreePageBlock; 4d70512abSGreg Roachuse Fisharebest\Webtrees\Module\ModuleBlockInterface; 5d70512abSGreg Roach 6d70512abSGreg Roach?> 73caaa4d2SGreg Roach 8dd6b2bfcSGreg Roach<?php if ($block->loadAjax()) : ?> 9*8e0e1b25SGreg Roach <div class="wt-ajax-load" data-ajax-url="<?= e(route(TreePageBlock::class, ['tree' => $tree->name(), 'block_id' => $block_id])) ?>"></div> 10dd6b2bfcSGreg Roach<?php else : ?> 113caaa4d2SGreg Roach <?= $block->getBlock($tree, $block_id, ModuleBlockInterface::CONTEXT_TREE_PAGE) ?> 12dd6b2bfcSGreg Roach<?php endif ?> 13