publication_li_classic.html 624 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. <span itemprop="name">{{ .Title }}</span>.
  9. {{ if .Params.publication_short }}
  10. {{- .Params.publication_short | markdownify -}}
  11. {{ else }}
  12. {{- .Params.publication | markdownify -}}
  13. {{ end }},&nbsp;
  14. {{- .Date.Format "2006" -}}.
  15. <p>{{ partial "publication_links" (dict "content" . "is_list" 1) }}</p>
  16. </div>