diff options
Diffstat (limited to 'themes/aoidh/layouts')
| -rw-r--r-- | themes/aoidh/layouts/baseof.html | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/themes/aoidh/layouts/baseof.html b/themes/aoidh/layouts/baseof.html index 1b58fdc..dd61d01 100644 --- a/themes/aoidh/layouts/baseof.html +++ b/themes/aoidh/layouts/baseof.html @@ -4,15 +4,17 @@ {{ partial "head.html" . }} </head> <body> - <header> - {{ partial "header.html" . }} - </header> - <main> - {{ block "main" . }}{{ end }} - </main> - <hr> - <footer> - {{ partial "footer.html" . }} - </footer> + <div class="content"> + <header> + {{ partial "header.html" . }} + </header> + <main> + {{ block "main" . }}{{ end }} + </main> + <hr> + <footer> + {{ partial "footer.html" . }} + </footer> + </div> </body> </html> |