diff --git a/layouts/websites/list.html b/layouts/websites/list.html new file mode 100644 index 0000000..d9ff1c6 --- /dev/null +++ b/layouts/websites/list.html @@ -0,0 +1,30 @@ +{{ define "main" }} +{{ range .Pages }} + + + {{ $thumbnail := .Resources.GetMatch "thumbnail.png" }} + {{ $thumbimg := $thumbnail.Resize "250x" }} + + {{ $image := .}} + + + + {{ .Title }} + {{ .Params.deployURL }} + {{ .Content }} + + + + + + + + + + + + + +{{ end }} +{{ end }}