From a4e41426b7eda77019bf98b9d5a1fc246be21815 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Mon, 21 Mar 2022 21:07:45 -0500 Subject: [PATCH] Add listing for websites --- layouts/websites/list.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 layouts/websites/list.html 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 := .}} + Thumbnail of {{ .Title }} +
+
+

{{ .Title }}

+

{{ .Params.deployURL }}

+ {{ .Content }} +
+
+ +
+
+
+{{ end }} +{{ end }}