| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | 
							- {{ $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 }}
 
-   {{ $filters := slice (images.GaussianBlur 21) (images.Pixelate 8) }}
 
-   {{ $image := .Fill (printf "808x455 %s" $anchor) }}
 
-   {{ $image_lq := (.Fill (printf "808x455 %s q1" $anchor)).Filter $filters }}
 
-   <a href="{{ $item.RelPermalink }}">
 
-     <div class="img-hover-zoom"><img src="{{ $image_lq.RelPermalink }}" data-src="{{ $image.RelPermalink }}" class="article-banner lazyload" alt="{{ $item.Title }}"></div>
 
-   </a>
 
-   {{end}}
 
-   <h3 class="article-title mb-1 mt-3">
 
-     <a href="{{ $item.RelPermalink }}">{{ $item.Title }}</a>
 
-   </h3>
 
-   {{ with $summary }}
 
-   <a href="{{ $item.RelPermalink }}" class="summary-link">
 
-     <div class="article-style">
 
-       <p>{{.}}</p>
 
-     </div>
 
-   </a>
 
-   {{ end }}
 
-   {{ if $show_buttons }}
 
-   <div class="btn-links">
 
-     {{ partial "page_links" (dict "page" $item "is_list" 1) }}
 
-   </div>
 
-   {{ end }}
 
- </div>
 
 
  |