mirror of
https://github.com/tiennm99/bonsai.git
synced 2026-09-02 22:17:11 +00:00
Adds canonical, og:url, robots, and theme-color meta tags for Lighthouse validation. Hardens avatar with width/height/fetchpriority/decoding and <picture> pipeline. Adds skip-link and tap-target CSS enhancements. Improves Core Web Vitals and accessibility scores.
15 lines
480 B
HTML
15 lines
480 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ site.LanguageCode | default `en` }}" data-bonsai-theme="{{ site.Params.colorTheme | default `bonsai` }}">
|
|
<head>
|
|
{{- partial "head.html" . -}}
|
|
{{- block "head_extra" . }}{{- end }}
|
|
</head>
|
|
<body>
|
|
<a class="skip-link" href="#main">{{ i18n "skip_to_content" | default "Skip to content" }}</a>
|
|
<main class="bonsai" id="main">
|
|
{{- block "main" . }}{{- end }}
|
|
</main>
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
</html>
|