Update menu entries and fixes some profile picture problems.

Added help pages too.
This commit is contained in:
2026-06-28 14:07:20 +02:00
parent 055be8e462
commit 6838df4c44
4 changed files with 25 additions and 5 deletions

View File

@@ -100,8 +100,12 @@
<div class="$menu-group">
<div class="$menu-group-title">{{ $navEntry.title }}</div>
<xf:foreach loop="$navEntry.children" key="$childNavId" value="$childNavEntry" i="$j">
<a href="{{ $childNavEntry.href }}" class="$menu-item" >
<i data-lucide="{{ $childNavEntry.attributes.icon}}"></i><span>{{ $childNavEntry.title }}</span>
<a href="{{ $childNavEntry.href }}"
class="$menu-item"
style="{{ $childNavEntry.attributes.color ? 'color:' . $childNavEntry.attributes.color : '' }}"
target="{{ $childNavEntry.attributes.target }}"
>
<i data-lucide="{{ $childNavEntry.attributes.icon }}"></i><span>{{ $childNavEntry.title }}</span>
</a>
</xf:foreach>
</div>