Newer
Older
{{ with .paper }}
<article class="paper" itemscope itemtype="https://schema.org/ScholarlyArticle" {{- if $inside_volume }} itemProp="hasPart" {{- end -}}>
<div>
<h3>
<a href="{{ .Permalink }}" itemprop="url">
<span itemprop="name">{{ partial "PrepareHTML" .Title }}</span>
<p>
{{ with .Params.paper_kind }}
<span class="paper-kind">{{ . }}</span>
{{ end }}
{{- range $index, $authors := .Params.Researchers -}}
{{- $author := site.GetPage (printf "/persons/%s" .) -}}
{{ if $author }}
{{- if ne $index 0 -}},{{ end }}
<span itemprop="author" itemscope itemtype="https://schema.org/Person">
<a href="{{ $author.Permalink }}" itemprop="url">
<span itemprop="name">{{ trim $author.Title "\n" }}</span>
</a>
</span>
{{- end -}}
{{- end -}}
{{ range .Params.Volumes }}
{{ $volume := site.GetPage (printf "/volumes/%s" .) }}
{{ if $volume }}
{{ i18n "commons.in" }} “<a href="{{ $volume.Permalink }}">{{ $volume.Title }}</a>”
{{ end }}
{{ end }}