Skip to content

Commit 240891a

Browse files
committed
Fixed links using name instead of label
Fixes #44
1 parent ed0af15 commit 240891a

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Fixed
11+
12+
- Footer links referred to `name` instead of `label`.
13+
814
## [1.6.3] - 2025-11-29
915

1016
### Changed

templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
{% for link in links %}
297297
<a
298298
href="{{ link.url }}"
299-
class="link link-hover me-5 last:me-0">{% if link.icon %}<i class="fa fa-lock fa-sm me-1"></i>{% endif %}{{ link.name }}</a>
299+
class="link link-hover me-5 last:me-0">{% if link.icon %}<i class="fa fa-lock fa-sm me-1"></i>{% endif %}{{ link.label }}</a>
300300
{% endfor %}
301301
</nav>
302302
</div>

0 commit comments

Comments
 (0)