publication_li_mla.html 654 B

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