diff options
author | Oscar Najera <hi@oscarnajera.com> | 2023-10-13 03:12:43 +0200 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2023-10-13 03:14:55 +0200 |
commit | 82fdcd672008651dd76f8b1f506f534145d5cc7a (patch) | |
tree | d1678ccb7345170866a7dba2feed59b70ac6ea89 /layouts/_default/baseof.html | |
parent | 4bbc7b9a7de0002173f38918cfd69a6e64d86e00 (diff) | |
download | hugo-minimalist-theme-82fdcd672008651dd76f8b1f506f534145d5cc7a.tar.gz hugo-minimalist-theme-82fdcd672008651dd76f8b1f506f534145d5cc7a.tar.bz2 hugo-minimalist-theme-82fdcd672008651dd76f8b1f506f534145d5cc7a.zip |
Striped sections
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index b0a5999..2ee48da 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -1,12 +1,12 @@ -<!DOCTYPE html> +<!doctype html> <html> - {{- partial "head.html" . -}} - <body class="w3-theme-light"> - {{- partial "header.html" . -}} - {{ block "hero" . }} {{ end }} - <div id="content" class="min-vh-100 mw7 center avenir ph2"> - {{- block "main" . }}{{- end }} - </div> - {{- partial "footer.html" . -}} - </body> + {{- partial "head.html" . -}} + <body class="w3-theme-light"> + {{- partial "header.html" . -}} + {{ block "hero" . }}{{ end }} + <div id="content" class="min-vh-100 avenir"> + {{- block "main" . }}{{- end }} + </div> + {{- partial "footer.html" . -}} + </body> </html> |