mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-05 08:25:59 -06:00
12 lines
357 B
HTML
12 lines
357 B
HTML
{{ with (.GetTerms "series") }}
|
|
{{ $series := slice }}
|
|
{{ range . }}
|
|
{{ $series = $series | append (printf `<a href="%s">%s</a>` .Permalink .LinkTitle) }}
|
|
{{ end }}
|
|
|
|
<div class="series" aria-label="{{ i18n "aria_post_meta_series" }}">
|
|
{{ partial "icon.html" "files" }}
|
|
{{ delimit $series ", " }}
|
|
</div>
|
|
{{ end }}
|