xref: /webtrees/resources/views/modules/block-template.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 $block
97c2c99faSGreg Roach * @var string $content
107c2c99faSGreg Roach * @var string $config_url
117c2c99faSGreg Roach * @var int $id
127c2c99faSGreg Roach * @var string $title
137c2c99faSGreg Roach */
147c2c99faSGreg Roach
15d70512abSGreg Roach?>
16dd6b2bfcSGreg Roach
171e7a7a28SGreg Roach<div class="card mb-4 wt-block wt-block-<?= e($block) ?>" id="block-<?= e($id) ?>">
18af864010SGreg Roach    <div class="card-header wt-block-header wt-block-header-<?= e($block) ?>">
19dd6b2bfcSGreg Roach        <?php if ($config_url !== '') : ?>
2039b853a7SGreg Roach            <a class="btn btn-link" href="<?= e($config_url) ?>" title="<?= I18N::translate('Preferences') ?>">
2139b853a7SGreg Roach                <?= view('icons/preferences') ?>
22315eb316SGreg Roach                <span class="visually-hidden"><?= I18N::translate('Preferences') ?></span>
2339b853a7SGreg Roach            </a>
24dd6b2bfcSGreg Roach        <?php endif ?>
25dd6b2bfcSGreg Roach        <?= $title ?>
26dd6b2bfcSGreg Roach    </div>
27dd6b2bfcSGreg Roach    <div class="card-body wt-block-content wt-block-content-<?= e($block) ?>">
28dd6b2bfcSGreg Roach        <?= $content ?>
29dd6b2bfcSGreg Roach    </div>
30dd6b2bfcSGreg Roach</div>
31