From 2e98d3d48c321deb101cd0b33c67d22adb6efee7a176c84e9f0d723bc7b08cdf Mon Sep 17 00:00:00 2001
From: Nicholas Johnson <nick@nicholasjohnson.ch>
Date: Fri, 25 Aug 2023 00:00:00 +0000
Subject: Make copyright notice mandatory

Requiring a copyright notice forces the user to make clear to readers
what their rights are with the capsule/site content. This also makes
templates simpler.
---
 layouts/_default/baseof.html | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

(limited to 'layouts/_default/baseof.html')

diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 1e32ff9..a36bd49 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -3,9 +3,7 @@
   {{ partial "head.html" . }}
   <body class="body">
     {{ partial "header.html" . }}
-    {{ block "main" . }}{{ end -}}
-    {{ if $.Site.Copyright }}
-    {{ partial "footer.html" . -}}
-    {{ end }}
+    {{ block "main" . }}{{ end }}
+    {{ partial "footer.html" . }}
   </body>
 </html>
\ No newline at end of file
-- 
cgit v1.2.3