You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pages/layouts/academia/single.html

28 lines
788 B
HTML

{{ define "main" }}
<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>
{{ end }}