{{ $item := . }} {{ $microdata_type := "CreativeWork" }} {{ $show_authors_only := false }}{{/* Show authors only or full metadata? */}} {{ $show_buttons := false }} {{/* Dynamic view adjusts to content type. */}} {{ if eq $item.Type "post" }} {{ $microdata_type = "BlogPosting" }} {{ else if eq $item.Type "talk" }} {{ $microdata_type = "Event" }} {{ $show_authors_only = true }} {{ $show_buttons = true }} {{ else if eq $item.Type "publication" }} {{ $microdata_type = "ScholarlyArticle" }} {{ $show_authors_only = true }} {{ $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.Truncated }} {{ $summary = $item.Summary }} {{ end }}