pages/layouts/videos/list.html

15 lines
387 B
HTML
Raw Normal View History

2022-03-19 02:39:51 +00:00
{{ define "main" }}
{{ .Content }}
<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>
{{ end }}