Add listing of all videos
This commit is contained in:
parent
58b993367a
commit
44b1466840
1 changed files with 14 additions and 0 deletions
14
layouts/videos/list.html
Normal file
14
layouts/videos/list.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
{{ 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 }}
|
Loading…
Reference in a new issue