refactor: Remove video-specific list template

This commit is contained in:
Thomas A. Christensen II 2023-04-15 15:53:43 -05:00
parent d0f8061d16
commit 151007b78b
Signed by: millironx
GPG key ID: 09335146883990B9

View file

@ -1,26 +0,0 @@
{{ 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 }}