Files
bridget/layouts/partials/head/link.html
Sped0n 268159e7d2 refactor: unify bundled assets with subdirs and Hugo mounts
Move bundled outputs to dedicated css/js subdirs. Update Vite
config to output directly to bundled/ with simplified naming.
Add Hugo module mounts to expose as assets/bundled and
static/bundled. Adjust gitignore and partial accordingly.

Signed-off-by: Sped0n <hi@sped0n.com>
2025-11-14 18:15:24 +08:00

40 lines
1.1 KiB
HTML

{{- /* fingerprint */ -}}
{{- $fingerprint := .Scratch.Get "fingerprint" | default "" -}}
{{- /* critical style */ -}}
{{- $style := dict "Source" "bundled/css/critical.css" "Fingerprint" $fingerprint -}}
{{- $options := dict "enableSourceMap" false -}}
{{- $style = dict "Context" . "ToCSS" $options "Inline" true "Template" true | merge $style -}}
{{- partial "plugin/style.html" $style -}}
{{- $style := dict "Link" ("bundled/css/main.css" | absURL) "Defer" true -}}
{{- partial "plugin/style.html" $style -}}
{{- /* fuck safari */ -}}
<script>
function z() {
const r = document.querySelector(':root')
r.style.setProperty('--window-height', `${window.innerHeight}px`)
}
z()
window.addEventListener('resize', z, { passive: true })
</script>
{{- /* main js */ -}}
{{- $script := dict "Link" ("bundled/js/main.js" | absURL) "Defer" true "Esm" true -}}
{{- partial "plugin/script.html" $script -}}
{{- /* fonts */ -}}
<link
rel="preload"
href="{{- "lib/fonts/fw.woff2" | absURL -}}"
as="font"
crossorigin
/>
<link
rel="preload"
href="{{- "lib/fonts/GeistVF.woff2" | absURL -}}"
as="font"
crossorigin
/>