diff options
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..d7bff57 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,30 @@ +{{/* +SPDX-FileCopyrightText: 2022 Ngô Ngọc Đức Huy <huyngo@disroot.org> + +SPDX-License-Identifier: MIT +*/}} + +<!DOCTYPE html> +<html lang="{{ .Page.Language.Lang }}"> +<head> + {{ block "head" . }} + {{ partial "head.html" . }} + {{ end }} +</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" . }} + {{ end }} + </div> +</body> +</html> |