publication_li_apa.html 661 B

12345678910111213141516
  1. <div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/CreativeWork">
  2. <i class="fa fa-file-text-o pub-icon" aria-hidden="true"></i>
  3. <span itemprop="author">
  4. {{ with .Params.authors }}
  5. {{- delimit . ", " | markdownify -}}
  6. {{- end -}}
  7. </span>
  8. ({{- .Date.Format "2006" -}}).
  9. <a href="{{ .Permalink }}" itemprop="name">{{ .Title }}</a>.
  10. {{ if .Params.publication_short }}
  11. {{- .Params.publication_short | markdownify -}}.
  12. {{ else if .Params.publication }}
  13. {{- .Params.publication | markdownify -}}.
  14. {{ end }}
  15. <p>{{ partial "publication_links" (dict "content" . "is_list" 1) }}</p>
  16. </div>