Downloaded theme

This commit is contained in:
2026-03-23 18:35:59 +01:00
parent 326fab0e42
commit d091efd432
86 changed files with 14512 additions and 0 deletions

View File

@@ -0,0 +1,103 @@
{{- $title := cond (ne .Title "") (printf "%s | %s" .Title .Site.Title)
.Site.Title -}}
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ $title }}</title>
{{ partial "meta.html" . }}
<!-- Favicon -->
{{ with .Site.Params.favicon }}
<link rel="icon" type="image/x-icon" href="{{ . | relURL }}" />
{{ else }}
<!-- Default favicon paths -->
{{ if fileExists "static/favicon.ico" }}
<link rel="icon" type="image/x-icon" href="{{ "favicon.ico" | relURL }}" />
{{ end }}
{{ if fileExists "static/favicon.png" }}
<link rel="icon" type="image/png" href="{{ "favicon.png" | relURL }}" />
{{ end }}
{{ if fileExists "static/favicon.svg" }}
<link rel="icon" type="image/svg+xml" href="{{ "favicon.svg" | relURL }}" />
{{ end }}
{{ end }}
<!-- Apple Touch Icon -->
{{ if .Site.Params.appleTouchIcon }}
<link rel="apple-touch-icon" href="{{ . | relURL }}" />
{{ else if fileExists "static/apple-touch-icon.png" }}
<link rel="apple-touch-icon" href="{{ "apple-touch-icon.png" | relURL }}" />
{{ end }}
<!-- Web App Manifest -->
{{ with .Site.GetPage "/" }}
{{ range .OutputFormats }}
{{ if eq .Name "webappmanifest" }}
<link rel="manifest" href="{{ .Permalink }}" />
{{ end }}
{{ end }}
{{ end }}
<link rel="stylesheet" href="{{ "css/main.css" | relURL }}">
{{ if .Site.Params.icons.useFontAwesome }}
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css"
>
{{ end }}
{{ if .Site.Params.icons.useDevicon }}
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.17.0/devicon.min.css"
>
{{ end }}
<!-- GLightbox -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css"
/>
<!-- Justified Gallery (Vanilla) -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/justified-gallery@3.8.2/dist/css/justifiedGallery.min.css"
/>
<script src="https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.min.js"></script>
<script>
mermaid.initialize({ theme: "dark" });
</script>
<script>
(function () {
try {
var stored = localStorage.getItem("theme");
var systemDark =
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches;
var defaultTheme =
'{{ default "system" .Site.Params.theme.defaultTheme }}';
var theme =
stored ||
(defaultTheme === "dark"
? "dark"
: defaultTheme === "light"
? "light"
: systemDark
? "dark"
: "light");
document.documentElement.setAttribute("data-theme", theme);
} catch (e) {
document.documentElement.setAttribute("data-theme", "light");
}
})();
</script>
<!-- Analytics -->
{{ partial "analytics.html" . }}