21 lines
737 B
HTML
21 lines
737 B
HTML
{{- $itemType := default "CreativeWork" .schemaType -}}
|
|
|
|
{{- $pages := where ( where .g.Site.Pages "Section" .section ) "title" .title | first 1 -}}
|
|
|
|
{{- with .c -}}
|
|
{{- with $pages -}}{{- range . -}}<a href="{{ .RelPermalink }}">{{- end -}}{{- end -}}
|
|
<cite
|
|
class="cite{{ with .citeStyle }} cite--{{ . }}{{ end }}"
|
|
itemscope
|
|
itemprop="citation"
|
|
itemtype="https://schema.org/{{- $itemType -}}"
|
|
{{- if $.titleTrans -}}
|
|
lang="{{- $.titleLang -}}"
|
|
title="{{- $.titleTrans -}}"
|
|
{{- end -}}>
|
|
{{- default .Title $.title -}}
|
|
</cite>
|
|
{{- with $pages -}}</a>{{- end -}}
|
|
|
|
{{- with $.edition }}<p class="edition">{{ . }}</p>{{- end -}}
|
|
{{- end -}}
|