mirror of
https://github.com/imfing/hextra.git
synced 2025-07-01 09:47:15 -04:00

- Changed the default page width from 1280px to 80rem in hugo.yaml. - Replaced dynamic page width partials with a new CSS class 'hextra-max-page-width' across multiple layout files for consistency. - Introduced a new head-config-css.html partial for managing CSS styles related to page width. - Removed the outdated page-width utility partial to streamline the codebase.
105 lines
3.8 KiB
HTML
105 lines
3.8 KiB
HTML
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
{{ if hugo.IsProduction -}}
|
||
<meta name="robots" content="index, follow" />
|
||
{{ else -}}
|
||
<meta name="robots" content="noindex, nofollow" />
|
||
{{ end -}}
|
||
{{ partialCached "favicons.html" . -}}
|
||
<title>
|
||
{{- if .IsHome -}}
|
||
{{ .Site.Title -}}
|
||
{{ else -}}
|
||
{{ with .Title }}{{ . }} –{{ end -}}
|
||
{{ .Site.Title -}}
|
||
{{ end -}}
|
||
</title>
|
||
<meta name="description" content="{{ partial "utils/page-description.html" . }}" />
|
||
|
||
{{- with .Params.canonical -}}
|
||
<link rel="canonical" href="{{ . }}" itemprop="url" />
|
||
{{- else -}}
|
||
<link rel="canonical" href="{{ .Permalink }}" itemprop="url" />
|
||
{{- end -}}
|
||
|
||
{{- partial "opengraph.html" . -}}
|
||
{{- template "_internal/schema.html" . -}}
|
||
{{- template "_internal/twitter_cards.html" . -}}
|
||
|
||
{{- partial "head-config-css.html" . -}}
|
||
|
||
{{- if and (not hugo.IsProduction) (eq hugo.Environment "theme") }}
|
||
{{- $styles := resources.Get "css/styles.css" }}
|
||
{{- $styles = $styles | postCSS (dict "inlineImports" true) }}
|
||
<link href="{{ $styles.RelPermalink }}" rel="stylesheet" />
|
||
{{- else }}
|
||
{{- $styles := resources.Get "css/compiled/main.css" -}}
|
||
|
||
{{- if hugo.IsProduction }}
|
||
{{- $styles = $styles | minify | fingerprint }}
|
||
<link rel="preload" href="{{ $styles.RelPermalink }}" as="style" integrity="{{ $styles.Data.Integrity }}" />
|
||
<link href="{{ $styles.RelPermalink }}" rel="stylesheet" integrity="{{ $styles.Data.Integrity }}" />
|
||
{{- else }}
|
||
<link href="{{ $styles.RelPermalink }}" rel="stylesheet" />
|
||
{{- end }}
|
||
{{- end }}
|
||
|
||
|
||
<!-- Custom CSS -->
|
||
{{- $custom := resources.Get "css/custom.css" }}
|
||
{{- if hugo.IsProduction -}}
|
||
{{- $custom = $custom | minify | fingerprint }}
|
||
<link href="{{ $custom.RelPermalink }}" rel="stylesheet" integrity="{{ $custom.Data.Integrity }}" />
|
||
{{- else }}
|
||
<link href="{{ $custom.RelPermalink }}" rel="stylesheet" />
|
||
{{- end }}
|
||
|
||
<!-- Google Analytics -->
|
||
{{- if and (eq hugo.Environment "production") .Site.Config.Services.GoogleAnalytics.ID }}
|
||
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
|
||
{{ partial "google-analytics.html" . }}
|
||
{{- end }}
|
||
|
||
<script>
|
||
/* Initialize light/dark mode */
|
||
const defaultTheme = '{{ site.Params.theme.default | default `system`}}';
|
||
|
||
const setDarkTheme = () => {
|
||
document.documentElement.classList.add("dark");
|
||
document.documentElement.style.colorScheme = "dark";
|
||
}
|
||
const setLightTheme = () => {
|
||
document.documentElement.classList.remove("dark");
|
||
document.documentElement.style.colorScheme = "light";
|
||
}
|
||
|
||
if ("color-theme" in localStorage) {
|
||
localStorage.getItem("color-theme") === "dark" ? setDarkTheme() : setLightTheme();
|
||
} else {
|
||
defaultTheme === "dark" ? setDarkTheme() : setLightTheme();
|
||
if (defaultTheme === "system") {
|
||
window.matchMedia("(prefers-color-scheme: dark)").matches ? setDarkTheme() : setLightTheme();
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<!-- KaTeX-->
|
||
{{ $noop := .WordCount -}}
|
||
{{ if .Page.Store.Get "hasMath" -}}
|
||
<!-- TODO: make url configurable -->
|
||
{{ $katexCssUrl := printf "https://cdn.jsdelivr.net/npm/katex@latest/dist/katex%s.css" (cond hugo.IsProduction ".min" "") -}}
|
||
{{ with try (resources.GetRemote $katexCssUrl) -}}
|
||
{{ with .Err -}}
|
||
{{ errorf "Could not retrieve KaTeX css file from %s. Reason: %s." $katexCssUrl . -}}
|
||
{{ else with.Value -}}
|
||
{{ with resources.Copy (printf "css/katex%s.css" (cond hugo.IsProduction ".min" "")) . -}}
|
||
<link rel="stylesheet" href="{{- .RelPermalink -}}" integrity="{{- . | fingerprint -}}" crossorigin="anonymous" />
|
||
{{ end -}}
|
||
{{ end -}}
|
||
{{ end -}}
|
||
{{ end -}}
|
||
|
||
{{ partial "custom/head-end.html" . -}}
|
||
</head>
|