9 lines
223 B
HTML
9 lines
223 B
HTML
|
{{- $terms := .page.GetTerms .term -}}
|
||
|
{{ with $terms }}
|
||
|
<ul class="taxonomy-list" data-term="{{ $.term }}">
|
||
|
{{ range . }}
|
||
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
{{ end }}
|