File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 8
8
{{ if .Params.tags }}
9
9
< div class ="blog-tags ">
10
10
{{ range .Params.tags }}
11
+ <!-- Fix for "https://github.com/halogenica/beautifulhugo/issues/349".
12
+ Inspired by "https://github.com/dovidio/personalwebsite/commit/34762e94c29fd2c26c16c45f8ae2de21bdf9b46d".
11
13
<a href="{{ $.Site.LanguagePrefix | absURL }}/tags/{{ . | urlize }}/">{{ . }}</a>
14
+ -->
15
+ < a href ="{{ "tags " | absLangURL}}/{{ . | urlize }}/"> {{ . }}</ a >
12
16
{{ end }}
13
17
</ div >
14
18
{{ end }}
Original file line number Diff line number Diff line change @@ -18,7 +18,12 @@ <h4 class="panel-title">
18
18
</ a >
19
19
< div id ="collapse{{ $value.Name | anchorize }} " class ="panel-collapse collapse ">
20
20
< div class ="panel-body ">
21
+ <!-- Fix for "https://github.com/halogenica/beautifulhugo/issues/349".
22
+ Inspired by "https://github.com/halogenica/beautifulhugo/pull/354#issuecomment-2106454808".
23
+
21
24
<a href="{{ $.Site.LanguagePrefix | absURL }}/{{ $data.Plural }}/{{ $value.Name | urlize }}/" class="list-group-item view-all">
25
+ -->
26
+ < a href ="{{ $data.Plural | absLangURL }}/{{ $value.Name | urlize }}/ " class ="list-group-item view-all ">
22
27
View all</ a >
23
28
< div class ="list-group ">
24
29
{{ range $item := $value.WeightedPages }}
Original file line number Diff line number Diff line change @@ -31,8 +31,12 @@ <h3 class="post-subtitle">
31
31
{{ if .Params.tags }}
32
32
< div class ="blog-tags ">
33
33
{{ range .Params.tags }}
34
- < a href ="{{ $.Site.LanguagePrefix | absURL }}/tags/{{ . | urlize }}/ "> {{ . }}</ a >
35
- {{ end }}
34
+ <!-- Fix for "https://github.com/halogenica/beautifulhugo/issues/349".
35
+ From "https://github.com/dovidio/personalwebsite/commit/34762e94c29fd2c26c16c45f8ae2de21bdf9b46d".
36
+ <a href="{{ $.Site.LanguagePrefix | absURL }}/tags/{{ . | urlize }}/">{{ . }}</a>
37
+ -->
38
+ < a href ="{{ "tags " | absLangURL}}/{{ . | urlize }}/"> {{ . }}</ a >
39
+ {{ end }}
36
40
</ div >
37
41
{{ end }}
38
42
You can’t perform that action at this time.
0 commit comments