Nord-themed dark/light mode family tree theme with: - Floating glass-morphism header bar - Auto/light/dark theme toggle with Lucide icons - Smart SVG logo with theme-aware fill colors - Active page highlighting with per-menu Nord icon colors - Language button showing 2-letter abbreviation - Start page search form - Mobile responsive icon-only nav - Custom views inherited from ArgonLight
28 lines
591 B
PHTML
28 lines
591 B
PHTML
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Fisharebest\Webtrees\I18N;
|
|
use Fisharebest\Webtrees\Place;
|
|
|
|
/**
|
|
* @var array<array<Place>> $columns
|
|
*/
|
|
|
|
?>
|
|
|
|
<div class="row">
|
|
<h5 class="col list_label text-center">
|
|
<?= I18N::translate('Place list') ?>
|
|
</h5>
|
|
</div>
|
|
<div class="row">
|
|
<?php foreach ($columns as $column) : ?>
|
|
<ul class="col wt-page-options-value me-1 list-unstyled">
|
|
<?php foreach ($column as $place) : ?>
|
|
<li><?= $place->fullName(true) ?></li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
<?php endforeach ?>
|
|
</div>
|