2025-08-14 23:12:23 +08:00
|
|
|
{{- with .Params.width -}}
|
2026-02-19 23:54:43 +00:00
|
|
|
{{- $pageWidthValues := dict "normal" "80rem" "wide" "90rem" "full" "100%" -}}
|
|
|
|
|
{{- $pageWidth := . -}}
|
|
|
|
|
{{- $maxPageWidth := (index $pageWidthValues $pageWidth) | default (index $pageWidthValues "normal") -}}
|
2025-08-14 23:12:23 +08:00
|
|
|
<style>
|
|
|
|
|
:root {
|
2026-02-19 23:54:43 +00:00
|
|
|
--hextra-max-page-width: {{ $maxPageWidth }};
|
2025-08-14 23:12:23 +08:00
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
{{- end -}}
|