From dca17ddd492c4677ef97bfabf0e2e4e492d5c810 Mon Sep 17 00:00:00 2001
From: Daniel Flanagan
Date: Tue, 14 Jul 2020 17:52:42 -0500
Subject: [PATCH] Fix html and base template
---
content/contact.md | 40 +++++++++++-------------
themes/lyte/layouts/_default/baseof.html | 12 +++----
2 files changed, 23 insertions(+), 29 deletions(-)
diff --git a/content/contact.md b/content/contact.md
index 78317db..7daedea 100644
--- a/content/contact.md
+++ b/content/contact.md
@@ -10,24 +10,22 @@ description: "Need to get in touch?"
Email me at daniel@lyte.dev or use the form below.
-
-
-
+
diff --git a/themes/lyte/layouts/_default/baseof.html b/themes/lyte/layouts/_default/baseof.html
index 1691e01..4de9e4c 100644
--- a/themes/lyte/layouts/_default/baseof.html
+++ b/themes/lyte/layouts/_default/baseof.html
@@ -1,17 +1,16 @@
- {{ block "head-begin" . }}{{ end }}
- {{ block "title" . }}
- {{ .Site.Title }}
- {{ end }}
+ {{ block "head-begin" . }}{{ end }}
+ {{ block "title" . }}{{ .Site.Title }}{{ end }}
{{ block "head-end" . }}{{ end }}
+ {{ block "body-begin" . }}{{ end }}
@@ -28,11 +27,8 @@
{{ end }}
- {{ block "body-begin" . }}{{ end }}
- {{ block "main" . }}
- {{ .Content }}
- {{ end }}
+ {{ block "main" . }}{{ .Content }}{{ end }}
{{ block "body-end" . }}{{ end }}