diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2023-07-27 14:04:30 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2023-07-27 14:04:30 +0700 |
commit | fa98ab0589d4be1ca89a0538f6826b0037ff9821 (patch) | |
tree | 7c019babc4d02a3b7bc8dfb2fb6550fdc58345c7 /layouts/_default/baseof.html | |
parent | 890252ec5e659b439165e0d18ca991ef1bfad9ee (diff) | |
download | victor-fa98ab0589d4be1ca89a0538f6826b0037ff9821.tar.gz |
Set up layout and navigation
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index d7bff57..b17f8ce 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -13,18 +13,16 @@ SPDX-License-Identifier: MIT </head> <body> <a class="skip-main" href="#main">{{ i18n "skipToContent" | humanize }}</a> - <div class="container"> - <header class="common-header"> - {{ block "header" . }} - {{ partial "header.html" . }} - {{ end }} - </header> - <main id="main" tabindex="-1"> - {{ block "main" . }}{{ end }} - </main> - {{ block "footer" . }} - {{ partial "footer.html" . }} + <header> + {{ block "header" . }} + {{ partial "header.html" . }} {{ end }} - </div> + </header> + <main tabindex="-1"> + {{ block "main" . }}{{ end }} + </main> + {{ block "footer" . }} + {{ partial "footer.html" . }} + {{ end }} </body> </html> |