| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | <div class="card-simple" itemscope itemtype="http://schema.org/Event">  {{ if .Params.image_preview }}    {{ .Scratch.Set "image" .Params.image_preview }}  {{ else if .Params.header.image }}    {{ .Scratch.Set "image" .Params.header.image }}  {{ end }}  {{ if .Scratch.Get "image" }}  <div>    <a href="{{ .Permalink }}">      {{ $img_src := urls.Parse (.Scratch.Get "image") }}      {{ if $img_src.Scheme }}        <img src="{{ .Scratch.Get "image" }}" class="article-banner" itemprop="image">      {{ else }}        <img src="{{ "/img/" | relURL }}{{ .Scratch.Get "image" }}" class="article-banner" itemprop="image">      {{ end }}    </a>  </div>  {{ end }}  <h3 class="article-title" itemprop="name">    <a href="{{ .Permalink }}" itemprop="url">{{ .Title }}</a>  </h3>  <div class="talk-metadata" itemprop="startDate">    {{ $date := .Params.time_start | default .Date }}    {{ (time $date).Format $.Site.Params.date_format }}    {{ if $.Site.Params.talks.time }}      {{ (time $date).Format ($.Site.Params.time_format | default "3:04 PM") }}      {{ with .Params.time_end }}        — {{ (time .).Format ($.Site.Params.time_format | default "3:04 PM") }}      {{ end }}    {{ end }}  </div>  <div class="talk-metadata">    {{ if .Params.event }}    {{ .Params.event | markdownify }}    {{ else if .Params.event_short }}    {{ .Params.event_short | markdownify }}    {{ end }}  </div>  <div class="talk-abstract" itemprop="text">    {{ if .Params.abstract_short }}    {{ .Params.abstract_short | markdownify }}    {{ else }}    {{ .Params.abstract | markdownify }}    {{ end }}  </div>  <div class="talk-links">    {{ partial "talk_links" (dict "content" . "is_list" 1) }}  </div></div>
 |