1*d70512abSGreg Roach<?php 2*d70512abSGreg Roach 3*d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 4*d70512abSGreg Roach 5*d70512abSGreg Roach?> 6dd6b2bfcSGreg Roach 71e7a7a28SGreg Roach<div class="card mb-4 wt-block wt-block-<?= e($block) ?>" id="block-<?= e($id) ?>"> 8dd6b2bfcSGreg Roach <div class="card-header wt-block-header wt-block-header-<?= e($block) ?>" dir="auto"> 9dd6b2bfcSGreg Roach <?php if ($config_url !== '') : ?> 1039b853a7SGreg Roach <a class="btn btn-link" href="<?= e($config_url) ?>" title="<?= I18N::translate('Preferences') ?>"> 1139b853a7SGreg Roach <?= view('icons/preferences') ?> 1239b853a7SGreg Roach <span class="sr-only"><?= I18N::translate('Preferences') ?></span> 1339b853a7SGreg Roach </a> 14dd6b2bfcSGreg Roach <?php endif ?> 15dd6b2bfcSGreg Roach <?= $title ?> 16dd6b2bfcSGreg Roach </div> 17dd6b2bfcSGreg Roach <div class="card-body wt-block-content wt-block-content-<?= e($block) ?>"> 18dd6b2bfcSGreg Roach <?= $content ?> 19dd6b2bfcSGreg Roach </div> 20dd6b2bfcSGreg Roach</div> 21