2022-06-29 04:12:35 +00:00
|
|
|
{{ define "main" }}
|
2022-06-29 04:34:36 +00:00
|
|
|
<section class="container-fluid list-main">
|
|
|
|
<div class="container px-5">
|
|
|
|
<h5>
|
|
|
|
{{ .Params.journal }}{{ with .Params.location }}: {{ . }}{{ end }}
|
|
|
|
</h5>
|
|
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
<h3>
|
|
|
|
<small>
|
|
|
|
<ul class="list-inline">
|
|
|
|
{{ range .Params.authors }}
|
|
|
|
<li class="list-inline-item">{{ . }}</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</small>
|
|
|
|
</h3>
|
|
|
|
<h4>{{ .Date | time.Format "January 2, 2006" }}</h4>
|
|
|
|
{{ .Content }}
|
|
|
|
{{ with .Params.link }}
|
|
|
|
<div class="card border-dark m-3 p-3">
|
|
|
|
<a href="{{ . }}">{{ . }}</a>
|
|
|
|
<iframe src="{{ . }}" style="width: 100%; height: 75vh"></iframe>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</section>
|
2022-06-29 04:12:35 +00:00
|
|
|
{{ end }}
|