12345678910111213141516 |
- <div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
- <i class="far fa-file-alt pub-icon" aria-hidden="true"></i>
- <span itemprop="author">
- {{ with .Params.authors }}
- {{- delimit . ", " | markdownify -}}
- {{- end -}}
- </span>.
- <a href="{{ .RelPermalink }}" itemprop="name">{{ .Title }}</a>.
- {{ if .Params.publication_short }}
- {{- .Params.publication_short | markdownify -}},
- {{ else if .Params.publication }}
- {{- .Params.publication | markdownify -}},
- {{ end }}
- {{- .Date.Format "2006" -}}.
- <p>{{ partial "page_links" (dict "content" . "is_list" 1) }}</p>
- </div>
|