Files
tiennm99 15ae06b770 feat(theme): Lighthouse meta hardening + skip-link
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.
2026-05-15 19:50:43 +07:00

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>