Thomas A. Christensen II
c875b93617
Hugo can't figure out how to sort out http vs https, which causes issues in Chromium-based browsers. Fix that by only using relative links.
33 lines
562 B
HTML
33 lines
562 B
HTML
{{ define "main" }}
|
|
{{ partial "scrolling-image-header" . }}
|
|
|
|
|
|
<section class="container-fluid list-main">
|
|
<div class="container px-5">
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
<div class="row">
|
|
{{ range .Pages }}
|
|
<div class="col-sm-4">
|
|
<a href="{{ .RelPermalink }}">
|
|
<img
|
|
class="img-fluid img-thumbnail rounded"
|
|
src="{{ .Params.thumbnail }}"
|
|
alt="Thumbnail of {{ .Title }}"
|
|
/>
|
|
<h4>{{ .Title }}</h4>
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</section>
|
|
|
|
|
|
{{ end }}
|