From 739f646458943a3743a213d48f793d8c57c3e052 Mon Sep 17 00:00:00 2001 From: Luca Date: Sun, 15 Nov 2020 00:32:58 +0100 Subject: [PATCH] Add no content --- assets/style.scss | 14 ++++++++++++++ layouts/index.html | 3 +++ 2 files changed, 17 insertions(+) diff --git a/assets/style.scss b/assets/style.scss index e69de29..0533b9f 100644 --- a/assets/style.scss +++ b/assets/style.scss @@ -0,0 +1,14 @@ +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + background: #000; +} + +#no-content { + display: block; + margin: 0 auto; +} diff --git a/layouts/index.html b/layouts/index.html index e4e4a83..55d33d0 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,2 +1,5 @@ {{ define "main" }} +
+ Picture of two cats in front of an empty bowl; the caption reads "204 No Content" +
{{ end }} -- 2.40.1