2023-08-07 22:23:46 +00:00
|
|
|
{{- $itemType := default "CreativeWork" ( .Params.schemaType ) -}}
|
|
|
|
|
|
|
|
{{- if ( in $.Site.Data.itemtypes $itemType ) -}}
|
|
|
|
{{- with .Params.href -}}
|
2023-07-01 03:16:59 +00:00
|
|
|
<a href="{{ if eq . "asCite" }}{{ $.Params.cite }}{{ else }}{{ . }}{{ end }}">
|
2023-08-07 22:23:46 +00:00
|
|
|
{{- end -}}
|
|
|
|
<cite
|
|
|
|
class="cite{{ with .Params.citeStyle }} cite--{{ . }}{{ end }}"
|
|
|
|
itemscope
|
|
|
|
itemprop="citation"
|
|
|
|
itemtype="https://schema.org/{{- $itemType -}}"
|
|
|
|
{{- if .Params.titleLang -}}
|
|
|
|
lang="{{- .Params.titleLang -}}"
|
|
|
|
title="{{- .Params.titleTr -}}"
|
|
|
|
{{- end -}}>
|
|
|
|
{{- with .Params.cite -}}
|
|
|
|
<meta itemprop="url" content="{{ . }}">
|
|
|
|
{{- end -}}
|
2023-07-01 03:16:59 +00:00
|
|
|
<span itemprop="name">
|
|
|
|
{{- if .Params.titleLang -}}
|
|
|
|
<i lang="{{ .Params.titleLang }}" title="{{ .Params.titleTr }}">
|
|
|
|
{{- end -}}
|
|
|
|
{{- if .Params.shortTitle -}}
|
|
|
|
{{- .Params.shortTitle | markdownify | safeHTML -}}
|
|
|
|
{{- else -}}
|
|
|
|
{{- .Params.title | markdownify | safeHTML -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- if .Params.titleLang -}}
|
|
|
|
</i>
|
|
|
|
{{- end -}}
|
|
|
|
</span>{{- /**/ -}}
|
|
|
|
</cite>
|
2023-08-07 22:23:46 +00:00
|
|
|
{{- with .Params.href -}}
|
2023-07-01 03:16:59 +00:00
|
|
|
</a>
|
2023-08-07 22:23:46 +00:00
|
|
|
{{- end -}}
|
|
|
|
{{- else -}}
|
|
|
|
{{- warnf "Invalid Schema.org type value: %q (%q)" $itemType .Page.File.Path -}}
|
2023-07-01 03:16:59 +00:00
|
|
|
{{- end -}}
|