diff options
author | Nicholas Johnson <nick@nicksphere.ch> | 2022-09-03 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nick@nicksphere.ch> | 2022-09-03 00:00:00 +0000 |
commit | 1b9ea9bc3ebcc08bff1409a5f4a0eff2d484686b37f1e6f89393be0ee8ce767a (patch) | |
tree | 332372dec4433c66deef1968eae41fe1384d33d3f5666fea730c3f39beaba4ea | |
parent | 91d9491fb2b4c9c83c116f3703764b1a009c158be10427a8f10575c908661a4e (diff) | |
download | hugo-theme-journal-1b9ea9bc3ebcc08bff1409a5f4a0eff2d484686b37f1e6f89393be0ee8ce767a.tar.gz hugo-theme-journal-1b9ea9bc3ebcc08bff1409a5f4a0eff2d484686b37f1e6f89393be0ee8ce767a.zip |
Fix spacing
-rw-r--r-- | layouts/_default/baseof.gmi | 3 | ||||
-rw-r--r-- | layouts/_default/baseof.html | 2 | ||||
-rw-r--r-- | layouts/partials/header.gmi | 2 | ||||
-rw-r--r-- | layouts/partials/header.html | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/layouts/_default/baseof.gmi b/layouts/_default/baseof.gmi index 3ef51c1..d866a14 100644 --- a/layouts/_default/baseof.gmi +++ b/layouts/_default/baseof.gmi @@ -1,4 +1,5 @@ {{ partial "header.gmi" . }} + {{ block "main" . }}{{ end }} -{{ partial "footer.gmi" . -}} +{{ partial "footer.gmi" . -}}
\ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index ace076a..c896b31 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -6,4 +6,4 @@ {{ block "main" . }}{{ end }} {{ partial "footer.html" . }} </body> -</html> +</html>
\ No newline at end of file diff --git a/layouts/partials/header.gmi b/layouts/partials/header.gmi index 3dafe9b..40e7a3a 100644 --- a/layouts/partials/header.gmi +++ b/layouts/partials/header.gmi @@ -1,3 +1,3 @@ ```nicksphere logo {{ readFile "/content/templates/logo" | safeHTML }} -``` +```
\ No newline at end of file diff --git a/layouts/partials/header.html b/layouts/partials/header.html index ef3f99d..36b23ad 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,3 +1,3 @@ <header> <pre id="logo">{{ readFile "/content/templates/logo" }}</pre> -</header> +</header>
\ No newline at end of file |