xref: /webtrees/resources/views/modals/header.phtml (revision dd6b2bfcc550270bb6d6778e11576148f71e4330)
1*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2*dd6b2bfcSGreg Roach
3*dd6b2bfcSGreg Roach<div class="modal-header">
4*dd6b2bfcSGreg Roach    <h3 class="modal-title" id="wt-ajax-modal-title">
5*dd6b2bfcSGreg Roach        <?= $title ?>
6*dd6b2bfcSGreg Roach    </h3>
7*dd6b2bfcSGreg Roach    <button type="button" class="close" data-dismiss="modal" aria-label="<?= I18N::translate('close') ?>">
8*dd6b2bfcSGreg Roach        <span aria-hidden="true">&times;</span>
9*dd6b2bfcSGreg Roach    </button>
10*dd6b2bfcSGreg Roach</div>
11