2022-02-15 03:24:35 +00:00
|
|
|
<div class="d-flex py-2">
|
2022-03-22 00:05:10 +00:00
|
|
|
<div class="px-2">
|
|
|
|
<h3>
|
|
|
|
{{ if eq .Params.type "poster" }}
|
|
|
|
<i
|
2022-06-29 03:34:43 +00:00
|
|
|
class="fad fa-fw fa-presentation"
|
2022-03-22 00:05:10 +00:00
|
|
|
data-bs-toggle="tooltip"
|
|
|
|
title="Poster"
|
|
|
|
></i>
|
|
|
|
{{ end }}
|
|
|
|
{{ if eq .Params.type "thesis" }}
|
|
|
|
<i
|
2022-06-29 03:34:43 +00:00
|
|
|
class="fad fa-fw fa-graduation-cap"
|
2022-03-22 00:05:10 +00:00
|
|
|
data-bs-toggle="tooltip"
|
|
|
|
title="Thesis"
|
|
|
|
></i>
|
|
|
|
{{ end }}
|
|
|
|
{{ if eq .Params.type "presentation" }}
|
|
|
|
<i
|
2022-06-29 03:34:43 +00:00
|
|
|
class="fad fa-fw fa-podium"
|
2022-03-22 00:05:10 +00:00
|
|
|
data-bs-toggle="tooltip"
|
|
|
|
title="Presentation"
|
|
|
|
></i>
|
|
|
|
{{ end }}
|
|
|
|
</h3>
|
|
|
|
{{ with .Params.link }}
|
|
|
|
<a
|
|
|
|
class="btn btn-secondary dogear"
|
|
|
|
href="{{ . }}"
|
|
|
|
data-bs-toggle="tooltip"
|
|
|
|
title="Full text"
|
|
|
|
><i class="fad fa-file-alt"></i
|
|
|
|
></a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
<div class="flex-grow-1 px-2">
|
|
|
|
<h3>
|
|
|
|
{{ .Title }}
|
|
|
|
</h3>
|
|
|
|
{{ $authlist := .Params.authors }}
|
|
|
|
{{ range $idx, $auth := .Params.authors }}
|
|
|
|
{{ if and (eq $idx (sub (len $authlist) 1)) (gt 1 (len $authlist)) }}
|
|
|
|
and
|
|
|
|
{{ end }}
|
|
|
|
{{- if eq $auth "Thomas A. Christensen II" }}
|
|
|
|
<strong>{{ $auth }}</strong>
|
|
|
|
{{- else }}
|
|
|
|
{{ $auth }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if lt $idx (sub (len $authlist) 1) -}}
|
|
|
|
,
|
|
|
|
{{- end }}
|
|
|
|
{{ end }}
|
|
|
|
<br />
|
|
|
|
{{ .Params.journal }}: {{ .Params.location }}
|
|
|
|
({{ dateFormat "02 Jan 2006" .Params.date }})
|
|
|
|
<br />
|
|
|
|
{{ with .Params.keywords }}
|
|
|
|
Keywords:
|
|
|
|
{{ range . }}
|
|
|
|
<a href="#">{{ . }}</a>
|
|
|
|
{{ end }}
|
|
|
|
<br />
|
|
|
|
{{ end }}
|
|
|
|
{{ if eq (.Scratch.Get "showAbstract") true }}
|
|
|
|
<details>
|
|
|
|
<summary>Abstract</summary>
|
|
|
|
{{ .Content }}
|
|
|
|
</details>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2022-02-15 03:24:35 +00:00
|
|
|
</div>
|