xref: /webtrees/resources/views/modals/header.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
6d70512abSGreg Roach
77c2c99faSGreg Roach/**
87c2c99faSGreg Roach * @var string $title
97c2c99faSGreg Roach */
107c2c99faSGreg Roach
11d70512abSGreg Roach?>
12dd6b2bfcSGreg Roach
13dd6b2bfcSGreg Roach<div class="modal-header">
14dd6b2bfcSGreg Roach    <h3 class="modal-title" id="wt-ajax-modal-title">
15dd6b2bfcSGreg Roach        <?= $title ?>
16dd6b2bfcSGreg Roach    </h3>
17315eb316SGreg Roach    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="<?= I18N::translate('close') ?>">
18dd6b2bfcSGreg Roach    </button>
19dd6b2bfcSGreg Roach</div>
20