Skip to content

Commit

Permalink
Fix broken glossary word link in site template.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Nov 25, 2023
1 parent 7a0cecc commit 5f78f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/glossary-words.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h2>{{ $.L.T "public.noResultsTitle" }}</h2>
{{ else }}
<ul class="noul words">
{{ range $i, $w := $g.Words }}
<li><a href="{{ .Consts.RootURL }}/dictionary/{{ UnicodeURL $g.FromLang }}/{{ UnicodeURL $g.ToLang }}/{{ UnicodeURL $w.Content }}">{{ $w.Content }}</a></li>
<li><a href="{{ $.Consts.RootURL }}/dictionary/{{ UnicodeURL $g.FromLang }}/{{ UnicodeURL $g.ToLang }}/{{ UnicodeURL $w.Content }}">{{ $w.Content }}</a></li>
{{ end }}
</ul>
{{ end }}
Expand Down

0 comments on commit 5f78f2e

Please sign in to comment.