7
1
mirror of https://gitlab.com/ansol/web-ansol.org.git synced 2024-10-18 14:03:08 +00:00
web-ansol.org/themes/academic/layouts/partials/li_card.html
2020-06-11 12:46:16 +01:00

69 lines
1.7 KiB
HTML

{{ $item := . }}
{{/* Dynamic view adjusts to content type. */}}
{{ $show_buttons := false }}
{{ if eq $item.Type "talk" }}
{{ $show_buttons = true }}
{{ else if eq $item.Type "publication" }}
{{ $show_buttons = true }}
{{ end }}
{{/* Get summary. */}}
{{ $summary := "" }}
{{ if $item.Params.summary }}
{{ $summary = $item.Params.summary | markdownify | emojify }}
{{ else if .Params.abstract }}
{{ $summary = .Params.abstract | markdownify | emojify }}
{{ else if $item.Summary }}
{{ $summary = $item.Summary }}
{{ end }}
<div class="card-simple">
{{ if eq $item.Type "talk" }}
<div class="article-metadata">
{{ if $item.Params.authors }}
<div>
{{ partial "page_metadata_authors" $item }}
</div>
{{ end }}
<span>
{{ partial "functions/get_event_dates" $item }}
</span>
{{ with $item.Params.location }}
<span class="middot-divider"></span>
<span>{{ . }}</span>
{{ end }}
</div>
{{ else }}
{{ partial "page_metadata" (dict "page" $item "is_list" 1) }}
{{ end }}
{{ $resource := ($item.Resources.ByType "image").GetMatch "*featured*" }}
{{ $anchor := $item.Params.image.focal_point | default "Smart" }}
{{ with $resource }}
{{ $image := .Fill (printf "918x517 q90 %s" $anchor) }}
<a href="{{ $item.RelPermalink }}">
<img src="{{ $image.RelPermalink }}" class="article-banner" alt="{{ $item.Title }}">
</a>
{{end}}
<h3 class="article-title mb-1 mt-3">
<a href="{{ $item.RelPermalink }}">{{ $item.Title }}</a>
</h3>
{{ with $summary }}
<div class="article-style">
<p>{{.}}</p>
</div>
{{ end }}
{{ if $show_buttons }}
<div class="btn-links">
{{ partial "page_links" (dict "page" $item "is_list" 1) }}
</div>
{{ end }}
</div>