fix(footer): correct link attribute in footer partial

Changed the link field to use `.url` instead of `.link` in the footer template. This aligns with the data structure where URLs are stored under the `url` key, ensuring that the links function as intended. This change corrects navigation issues due to incorrect key usage.
This commit is contained in:
Kumi 2024-10-20 21:41:49 +02:00
parent ef7db9debd
commit 962e9fa004
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -7,7 +7,7 @@
{{- if .icon -}}
<img src="/icons/{{- .icon -}}" alt="{{- .name -}}" />&nbsp;
{{- end -}}
<a href="{{- .link -}}">{{- .name -}}</a>
<a href="{{- .url -}}">{{- .name -}}</a>
</li>
{{- end -}}
</ul>