Initial commit: Bocken theme for webtrees
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
This commit is contained in:
27
resources/views/modules/place-hierarchy/list.phtml
Normal file
27
resources/views/modules/place-hierarchy/list.phtml
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user