#132, add urlize to taxonomy templates
This commit is contained in:
parent
bce8940c62
commit
9888c52dbf
2 changed files with 6 additions and 5 deletions
|
@ -7,12 +7,13 @@
|
||||||
|
|
||||||
{{ range $term, $_ := .Site.Taxonomies }}
|
{{ range $term, $_ := .Site.Taxonomies }}
|
||||||
{{ with $list := index $.Params $term }}
|
{{ with $list := index $.Params $term }}
|
||||||
|
<div>
|
||||||
{{ range $n, $single := $list }}{{ if $n }}, {{ end }}
|
{{ range $n, $single := $list }}{{ if $n }}, {{ end }}
|
||||||
{{ with $.Site.GetPage (printf "/%s/%s" $term $single) }}
|
{{ with $.Site.GetPage (printf "/%s/%s" $term $single | urlize) }}
|
||||||
<a href="{{ .RelPermalink }}">{{ $single }}</a>
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
<br />
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
{{ range $term, $_ := .Site.Taxonomies }}
|
{{ range $term, $_ := .Site.Taxonomies }}
|
||||||
{{ with $.Site.GetPage (printf "/%s" $term) }}
|
{{ with $.Site.GetPage (printf "/%s" $term | urlize) }}
|
||||||
<li class="book-section-flat">
|
<li class="book-section-flat">
|
||||||
<strong>{{ .Title | title }}</strong>
|
<strong>{{ .Title | title }}</strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
Loading…
Reference in a new issue