xref: /webtrees/resources/views/modals/header.phtml (revision 7c2c99fad7cacd17c98be88238ff735d82c6351b)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
4d70512abSGreg Roach
5*7c2c99faSGreg Roach/**
6*7c2c99faSGreg Roach * @var string $title
7*7c2c99faSGreg Roach */
8*7c2c99faSGreg Roach
9d70512abSGreg Roach?>
10dd6b2bfcSGreg Roach
11dd6b2bfcSGreg Roach<div class="modal-header">
12dd6b2bfcSGreg Roach    <h3 class="modal-title" id="wt-ajax-modal-title">
13dd6b2bfcSGreg Roach        <?= $title ?>
14dd6b2bfcSGreg Roach    </h3>
15dd6b2bfcSGreg Roach    <button type="button" class="close" data-dismiss="modal" aria-label="<?= I18N::translate('close') ?>">
16dd6b2bfcSGreg Roach        <span aria-hidden="true">&times;</span>
17dd6b2bfcSGreg Roach    </button>
18dd6b2bfcSGreg Roach</div>
19