publication_li_simple.html 434 B

12345678910
  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. <a href="{{ .RelPermalink }}" itemprop="name">{{ .Title }}</a>
  4. <div itemprop="author">
  5. {{ with .Params.authors }}
  6. {{- delimit . ", " | markdownify -}}
  7. {{- end -}}
  8. </div>
  9. <p>{{ partial "page_links" (dict "content" . "is_list" 1) }}</p>
  10. </div>