pages/layouts/videos/list.html

20 lines
404 B
HTML
Raw Normal View History

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