You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
580 B
HTML
24 lines
580 B
HTML
{{ with .Date }}
|
|
<h5>{{ partial "docs/date" (dict "Date" . "Format" $.Site.Params.BookDateFormat) }}</h5>
|
|
{{ end }}
|
|
|
|
{{ range $taxonomy, $_ := .Site.Taxonomies }}
|
|
{{ with $terms := $.GetTerms $taxonomy }}
|
|
<div>
|
|
{{ range $n, $term := $terms }}{{ if $n }}, {{ end }}
|
|
<a href="{{ $term.RelPermalink }}">{{ $term.Title }}</a>
|
|
{{- end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ if .Params.image }}
|
|
<p>
|
|
{{ with .Resources.GetMatch .Params.image }}
|
|
<img src={{ .RelPermalink }} />
|
|
{{ else }}
|
|
<img src={{ .Params.image | relURL }} />
|
|
{{ end }}
|
|
</p>
|
|
{{ end }}
|