Files
FixIt/layouts/_partials/init/index.html
T
Cell 5322a15ceb docs(layouts): add header comments to undocumented partials
Add `{{/* ... */}}` header comments to 25 partials that had no documentation,
enabling `pnpm gen:docs` to generate their reference docs. Also fix
base/head/index.html leading blank line that prevented parser matching.

Groups covered: base/, feed/, function/, home/, init/, plugin/, single/, store/, (root).
2026-07-23 12:56:40 +08:00

21 lines
726 B
HTML

{{- /*
Theme initialization entry point partial.
Sets the theme version and orchestrates all init sub-partials:
environment detection, version checking, deprecated param detection,
Pagefind index check, encryption warnings, global setup, and browser compatibility.
Called from: layouts/baseof.html.
*/ -}}
{{- hugo.Store.Set "version" "v1.0.0-mrx1h9pi" -}}
{{- .Store.Set "this" dict -}}
{{- partial "init/detection-env.html" . -}}
{{- partial "init/detection-version.html" . -}}
{{- partial "init/detection-deprecated.html" . -}}
{{- partial "init/detection-pagefind.html" . -}}
{{- partial "init/detection-encryption.html" . -}}
{{- partial "init/global.html" . -}}
{{- partial "init/compatibility.html" . -}}