1efbc3a0cSGreg Roach<?php 2efbc3a0cSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5efbc3a0cSGreg Roachuse Fisharebest\Webtrees\I18N; 67c2c99faSGreg Roachuse Fisharebest\Webtrees\Module\ModuleBlockInterface; 77c2c99faSGreg Roach 87c2c99faSGreg Roach/** 97c2c99faSGreg Roach * @var ModuleBlockInterface $block 107c2c99faSGreg Roach * @var int|string $block_id 117c2c99faSGreg Roach */ 12efbc3a0cSGreg Roach 13efbc3a0cSGreg Roach?> 14efbc3a0cSGreg Roach 15efbc3a0cSGreg Roach<div class="card wt-block" id="block-<?= e($block_id) ?>"> 16efbc3a0cSGreg Roach <div class="card-header wt-block-header p-2 d-flex justify-content-between"> 17efbc3a0cSGreg Roach <div> 18efbc3a0cSGreg Roach <input type="hidden" name="blocks[]" value="<?= e($block_id) ?>"> 19efbc3a0cSGreg Roach 20efbc3a0cSGreg Roach <span class="drag-handle"> 21efbc3a0cSGreg Roach <?= view('icons/drag-handle') ?> 22efbc3a0cSGreg Roach </span> 23efbc3a0cSGreg Roach 2433c1fdc1SGreg Roach <span title="<?= I18N::translate('Block') ?> <?= e($block_id) ?>"> 25efbc3a0cSGreg Roach <?= $block->title() ?> 2633c1fdc1SGreg Roach </span> 27efbc3a0cSGreg Roach </div> 28efbc3a0cSGreg Roach 29efbc3a0cSGreg Roach <div> 30efbc3a0cSGreg Roach <span title="<?= I18N::translate('Delete') ?>"> 31efbc3a0cSGreg Roach <?= view('icons/delete') ?> 32efbc3a0cSGreg Roach </span> 33efbc3a0cSGreg Roach 34efbc3a0cSGreg Roach <span title="<?= e($block->description()) ?>"> 35efbc3a0cSGreg Roach <?= view('icons/help') ?> 36efbc3a0cSGreg Roach </span> 37efbc3a0cSGreg Roach </div> 38efbc3a0cSGreg Roach </div> 39efbc3a0cSGreg Roach</div> 40