mirror of
https://github.com/tiennm99/tsuki.git
synced 2026-05-24 23:37:04 +00:00
5f10e72b47
Add skip-to-content link, enhance focus indicators, implement custom render hooks for links and images, fix giscus dark mode paint issue.
17 lines
485 B
HTML
17 lines
485 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ site.LanguageCode | default "vi" }}">
|
|
<head>
|
|
{{ partial "head.html" . }}
|
|
{{ block "head_extra" . }}{{ end }}
|
|
</head>
|
|
<body class="{{ block "body_class" . }}{{ end }}">
|
|
<a class="skip-link" href="#main">{{ i18n "skipToContent" | default "Đến nội dung chính" }}</a>
|
|
{{ partial "header.html" . }}
|
|
<main id="main">
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
{{ partial "footer.html" . }}
|
|
{{ block "scripts" . }}{{ end }}
|
|
</body>
|
|
</html>
|