pages/layouts/videos/list.html

20 lines
404 B
HTML
Raw Normal View History

2022-03-18 22:39:51 -04:00
{{ define "main" }}
2022-03-21 20:05:10 -04:00
{{ .Content }}
2022-03-18 22:39:51 -04:00
2022-03-21 20:05:10 -04:00
<div class="row">
{{ range .Pages }}
<div class="col-sm-4">
<a href="{{ .Permalink }}">
<img
class="img-fluid img-thumbnail rounded"
src="{{ .Params.thumbnail }}"
alt="Thumbnail of {{ .Title }}"
/>
<h4>{{ .Title }}</h4>
</a>
</div>
{{ end }}
</div>
2022-03-18 22:39:51 -04:00
{{ end }}