mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
63 lines
2.1 KiB
HTML
63 lines
2.1 KiB
HTML
{{/* fingerprint */}}
|
|
{{- $fingerprint := .Scratch.Get "fingerprint" | default "" -}}
|
|
|
|
{{/* critical style */}}
|
|
{{- $style := dict "Source" "scss/critical.scss" "Fingerprint" $fingerprint -}}
|
|
{{- $options := dict "enableSourceMap" true "includePaths" (slice "node_modules") -}}
|
|
{{- $style = dict "Context" . "ToCSS" $options "Inline" true | merge $style -}}
|
|
{{- partial "plugin/style.html" $style -}}
|
|
|
|
{{/* main style */}}
|
|
{{- if site.Params.bundled -}}
|
|
<link
|
|
rel="stylesheet"
|
|
as="style"
|
|
onload="this.onload=null;this.rel='stylesheet'"
|
|
href="/bundled/css/style.min.css"
|
|
/>
|
|
<noscript><link rel="stylesheet" href="/bundled/css/style.min.css" /></noscript>
|
|
{{- else -}}
|
|
{{- $style := dict "Source" "scss/style.scss" "Fingerprint" $fingerprint -}}
|
|
{{- $style := dict "Source" "scss/style.scss" "Fingerprint" $fingerprint -}}
|
|
{{- $options := dict "targetPath" "css/style.css" "enableSourceMap" true "includePaths" (slice "node_modules") -}}
|
|
{{- $style = dict "Context" . "ToCSS" $options "Minify" hugo.IsProduction "Defer" true | merge $style -}}
|
|
{{- partial "plugin/style.html" $style -}}
|
|
{{- end -}}
|
|
|
|
{{/* main js */}}
|
|
<script type="module" src="/bundled/js/main.js" defer></script>
|
|
|
|
{{/* fonts */}}
|
|
<link rel="preload" href="/lib/fonts/NotoSans-Regular.woff2" as="font" crossorigin />
|
|
{{- if (partial "function/langCode.html" (slice "en")) -}}
|
|
<link rel="preload" href="/lib/fonts/GeistVF.woff2" as="font" crossorigin />
|
|
{{- else if (partial "function/langCode.html" (slice "zh-cn" "zh-sg")) -}}
|
|
<link
|
|
rel="preload"
|
|
href="/lib/fonts/NotoSansCJKsc-Regular.woff2"
|
|
as="font"
|
|
crossorigin
|
|
/>
|
|
{{- else if (partial "function/langCode.html" (slice "zh-tw" "zh-hk" "zh-mo")) -}}
|
|
<link
|
|
rel="preload"
|
|
href="/lib/fonts/NotoSansCJKtc-Regular.woff2"
|
|
as="font"
|
|
crossorigin
|
|
/>
|
|
{{- else if (partial "function/langCode.html" (slice "ja")) -}}
|
|
<link
|
|
rel="preload"
|
|
href="/lib/fonts/NotoSansCJKjp-Regular.woff2"
|
|
as="font"
|
|
crossorigin
|
|
/>
|
|
{{- else if (partial "function/langCode.html" (slice "ko")) -}}
|
|
<link
|
|
rel="preload"
|
|
href="/lib/fonts/NotoSansCJKkr-Regular.woff2"
|
|
as="font"
|
|
crossorigin
|
|
/>
|
|
{{- end -}}
|