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:
parent
ef7db9debd
commit
962e9fa004
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
{{- if .icon -}}
|
||||
<img src="/icons/{{- .icon -}}" alt="{{- .name -}}" />
|
||||
{{- end -}}
|
||||
<a href="{{- .link -}}">{{- .name -}}</a>
|
||||
<a href="{{- .url -}}">{{- .name -}}</a>
|
||||
</li>
|
||||
{{- end -}}
|
||||
</ul>
|
||||
|
|
Loading…
Reference in a new issue