pages/layouts/videos/list.html

34 lines
562 B
HTML
Raw Normal View History

2022-03-19 02:39:51 +00:00
{{ define "main" }}
{{ partial "scrolling-image-header" . }}
<section class="container-fluid list-main">
<div class="container px-5">
2022-03-22 00:05:10 +00:00
{{ .Content }}
2022-03-19 02:39:51 +00:00
2022-03-22 00:05:10 +00:00
2022-03-22 00:05:10 +00:00
<div class="row">
{{ range .Pages }}
<div class="col-sm-4">
<a href="{{ .RelPermalink }}">
2022-03-22 00:05:10 +00:00
<img
class="img-fluid img-thumbnail rounded"
src="{{ .Params.thumbnail }}"
alt="Thumbnail of {{ .Title }}"
/>
<h4>{{ .Title }}</h4>
</a>
</div>
{{ end }}
</div>
</div>
</section>
2022-03-19 02:39:51 +00:00
{{ end }}