publication_li_detailed.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <div class="pub-list-item card-simple" itemscope itemtype="http://schema.org/CreativeWork">
  2. {{ $resource := (.Resources.ByType "image").GetMatch "*featured*" }}
  3. {{ $anchor := .Params.image.focal_point | default "Smart" }}
  4. {{ with $resource }}
  5. {{ $image := .Fill (printf "918x517 q90 %s" $anchor) }}
  6. <div>
  7. <a href="{{ $.RelPermalink }}">
  8. <img src="{{ $image.RelPermalink }}" class="article-banner" itemprop="image" alt="">
  9. </a>
  10. </div>
  11. {{end}}
  12. <h3 class="article-title" itemprop="name">
  13. <a href="{{ .RelPermalink }}" itemprop="url">{{ .Title }}</a>
  14. </h3>
  15. <div class="pub-abstract" itemprop="text">
  16. {{ if .Params.abstract_short }}
  17. {{ .Params.abstract_short | markdownify }}
  18. {{ else }}
  19. {{ .Params.abstract | markdownify}}
  20. {{ end }}
  21. </div>
  22. <div class="pub-authors" itemprop="author">
  23. {{ with .Params.authors }}
  24. {{ delimit . ", " | markdownify }}
  25. {{ end }}
  26. </div>
  27. <div class="pub-publication">
  28. {{ if .Params.publication_short }}
  29. {{ .Params.publication_short | markdownify }},
  30. {{ else if .Params.publication }}
  31. {{ .Params.publication | markdownify }},
  32. {{ end }}
  33. {{ .Date.Format "2006" }}
  34. </div>
  35. <div class="pub-links">
  36. {{ partial "page_links" (dict "content" . "is_list" 1) }}
  37. </div>
  38. </div>