21 lines
585 B
HTML
21 lines
585 B
HTML
<ul class="publications">
|
|
{{ $authors := .Page.Params.authors }}
|
|
{{ range sort .Page.Params.publications "year" "desc" }}
|
|
<li>
|
|
<span class="authors">
|
|
{{- range .authors }}
|
|
{{ $author := . }}
|
|
{{- with $authors -}}
|
|
{{ partial "research/quote_author.html" (index . $author) }}
|
|
{{- end -}}
|
|
{{ end -}}
|
|
</span>.
|
|
<span class="title">{{ .title }}</span> in
|
|
<span class="journal">{{ .journal }}</span>
|
|
|
|
{{ range .links }}
|
|
<span class="doclink"><a href="{{ .url }}">[{{ .name }}]</a></span>
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|