Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/aafu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html11
1 files changed, 8 insertions, 3 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 0e1ac85..0365dcb 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -2,8 +2,13 @@
<html lang="{{ .Site.LanguageCode }}">
{{- partial "head.html" . -}}
<body class="container">
- {{ partial "header" . }}
- {{- block "main" . }}
- {{- end }}
+ <main style="min-height: calc(100vh - 60px);">
+ {{ partial "header" . }}
+ {{- block "main" . }}
+ {{- end }}
+ </main>
+ {{ if not .IsHome }}
+ {{ partial "footer" . }}
+ {{ end }}
</body>
</html>