nostyleplease/layouts/baseof.html

14 lines
452 B
HTML
Raw Normal View History

2022-08-26 15:15:25 +08:00
<!DOCTYPE html>
2022-08-26 23:20:48 +08:00
<html lang="{{ $.Site.LanguageCode }}" class="han-init">
2022-08-26 15:15:25 +08:00
{{- partial "head.html" . -}}
<body a="{{ $.Site.Params.theme_config.appearance | default "auto" }}">
<main class="page-content" aria-label="Content">
<div class="w">
{{- block "main" . }}{{- end }}
</div>
</main>
2022-08-26 23:20:48 +08:00
<script src="https://cdn.jsdelivr.net/npm/han-css@3/dist/han.min.js"></script>
2022-08-26 15:15:25 +08:00
</body>
</html>