From 58f0b48a72fa4951f82a50b5ae2e55bc1c1b8d3c Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 14 Jan 2018 05:49:55 +0200 Subject: [PATCH] layouts/404.html: Add minimal not found page You still need to instruct your web server to use this. See the Hugo documentation for more information: https://gohugo.io/templates/404/ Closes #72 --- layouts/404.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/layouts/404.html b/layouts/404.html index e69de29..ea058e5 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -0,0 +1,12 @@ +{{ define "main"}} + +
+
+

Page Not Found

+
+

Page not found. Go back home.

+
+ +{{ end }} + +{{- /* vim: set ts=2 sw=2 et: */}}