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:
2026-03-14 09:53:43 +01:00
commit ce11b25da4
54 changed files with 5426 additions and 0 deletions

View 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>