2022-02-02 22:34:15 -05:00
|
|
|
{{ define "main" }}
|
|
|
|
<h2>Selected Presentations</h2>
|
|
|
|
{{ $featuredpubs := where .Pages ".Params.featured" "==" true }}
|
|
|
|
{{ range $featuredpubs }}
|
2022-02-14 23:10:36 -05:00
|
|
|
{{ .Scratch.Set "showAbstract" true }}
|
2022-02-14 22:24:35 -05:00
|
|
|
{{ partial "academia/list-single.html" . }}
|
2022-02-02 22:34:15 -05:00
|
|
|
{{ end }}
|
2022-02-14 22:26:27 -05:00
|
|
|
<hr />
|
|
|
|
<h2>Other Presentations</h2>
|
|
|
|
{{ $nonfeaturedpubs := where .Pages ".Params.featured" "==" false }}
|
|
|
|
{{ range $nonfeaturedpubs }}
|
|
|
|
{{ partial "academia/list-single.html" . }}
|
|
|
|
{{ end }}
|
2022-02-02 22:34:15 -05:00
|
|
|
{{ end }}
|