From e32438ba7c164d8a6a21917cddc44591c98385e5 Mon Sep 17 00:00:00 2001 From: Thomas Schwery Date: Sun, 11 Nov 2018 22:28:04 +0100 Subject: [PATCH 1/3] Update Zen theme --- themes/hugo-zen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/hugo-zen b/themes/hugo-zen index 924fceb..cabdacf 160000 --- a/themes/hugo-zen +++ b/themes/hugo-zen @@ -1 +1 @@ -Subproject commit 924fcebb10a39fc7d8a29fd202f4a993feb2c6e2 +Subproject commit cabdacf56b9567da3953bffccdd06ed787aebd0c From 9611b0fc33ffa1c0de09f702fc24268f9d49ead2 Mon Sep 17 00:00:00 2001 From: Thomas Schwery Date: Sun, 11 Nov 2018 22:28:17 +0100 Subject: [PATCH 2/3] Add index.html to the article pages --- layouts/_default/list.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 layouts/_default/list.html diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..8b2cb0d --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,13 @@ +{{ partial "header.html" . }} + +
+

{{ .Title }}

+{{ range .Data.Pages }} + +{{ end }} +
+ +{{ partial "footer.html" . }} From 6414447282a6a163287bd3a97d28cf58b04a74aa Mon Sep 17 00:00:00 2001 From: Thomas Schwery Date: Sun, 11 Nov 2018 22:37:35 +0100 Subject: [PATCH 3/3] Add simple 404 page --- layouts/404.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 layouts/404.html diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..f2bef66 --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,10 @@ +{{ partial "header.html" . }} + +
+
+

Page not found

+

Go Home

+
+
+ +{{ partial "footer.html" . }}