Joey Hafner
97e4cc547a
1. homelab [Gitea](https://gitea.jafner.tools/Jafner/homelab), [Github (docker_config)](https://github.com/Jafner/docker_config), [Github (wiki)](https://github.com/Jafner/wiki), [Github (cloud_tools)](https://github.com/Jafner/cloud_tools), [Github (self-hosting)](https://github.com/Jafner/self-hosting). - Rename? Jafner.net? Wouldn't that be `Jafner/Jafner.net/Jafner.net`? 2. Jafner.dev [Github](https://github.com/Jafner/Jafner.dev). 3. dotfiles [Gitea](https://gitea.jafner.tools/Jafner/dotfiles), [Github](https://github.com/Jafner/dotfiles). 4. nvgm [Gitea](https://gitea.jafner.tools/Jafner/nvgm) 5. pamidi [Gitea](https://gitea.jafner.tools/Jafner/pamidi), [Github](https://github.com/Jafner/pamidi) 6. docker-llm-amd [Gitea](https://gitea.jafner.tools/Jafner/docker-llm-amd) 7. doradash [Gitea](https://gitea.jafner.tools/Jafner/doradash) 8. clip-it-and-ship-it [Gitea (PyClipIt)](https://gitea.jafner.tools/Jafner/PyClipIt), [Github](https://github.com/Jafner/clip-it-and-ship-it). 9. razer battery led [Github](https://github.com/Jafner/Razer-BatteryLevelRGB) 10. 5etools-docker [Github](https://github.com/Jafner/5etools-docker) 11. jafner-homebrew [Github](https://github.com/Jafner/jafner-homebrew)
74 lines
2.9 KiB
HTML
74 lines
2.9 KiB
HTML
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
{{ if .Params.noindex }}
|
|
<meta name="robots" content="noindex" />
|
|
{{ end }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="author" content="{{ if .Params.author }}{{ .Params.author }}{{ else }}{{ range .Site.Author }}{{ . }} {{ end }}{{ end }}">
|
|
<meta name="description" content="{{ if .IsHome }}{{ .Site.Params.homeSubtitle }}{{ else }}{{ if .Params.Description }}{{ .Params.Description }}{{ else }}{{ .Summary | plainify }}{{ end }}{{ end }}" />
|
|
<meta name="keywords" content="{{ .Site.Params.keywords }}{{ if .Params.tags }}{{ range .Params.tags }}, {{ . }}{{ end }}{{ end }}" />
|
|
<meta name="robots" content="noodp" />
|
|
<meta name="theme-color" content="{{ .Site.Params.themeColor }}" />
|
|
<link rel="canonical" href="{{ .Permalink }}" />
|
|
|
|
{{ block "title" . }}
|
|
<title>
|
|
{{ if .IsHome }}
|
|
{{ $.Site.Title }} {{ with $.Site.Params.Subtitle }} — {{ . }} {{ end }}
|
|
{{ else }}
|
|
{{ .Title }} :: {{ $.Site.Title }} {{ with $.Site.Params.Subtitle }} — {{ . }}{{ end }}
|
|
{{ end }}
|
|
</title>
|
|
{{ end }}
|
|
|
|
<!-- CSS -->
|
|
{{ $options := (dict "targetPath" "main.css" "outputStyle" "compressed" "enableSourceMap" true) }}
|
|
{{ $style := resources.Get "scss/main.scss" | resources.ToCSS $options | resources.Fingerprint }}
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}">
|
|
|
|
{{ range $val := $.Site.Params.customCSS }}
|
|
{{ if gt (len $val) 0 }}
|
|
<link rel="stylesheet" type="text/css" href="{{ $val }}">
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
<!-- Icons -->
|
|
{{- partial "favicons.html" . }}
|
|
|
|
{{ template "_internal/schema.html" . }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
{{ template "_internal/opengraph.html" . }}
|
|
|
|
{{ range .Params.categories }}
|
|
<meta property="article:section" content="{{ . }}" />
|
|
{{ end }}
|
|
|
|
{{ if isset .Params "date" }}
|
|
<meta property="article:published_time" content="{{ time .Date }}" />
|
|
{{ end }}
|
|
|
|
<!-- RSS -->
|
|
{{ with .OutputFormats.Get "rss" -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{ end -}}
|
|
|
|
<!-- JSON Feed -->
|
|
{{ if .OutputFormats.Get "json" }}
|
|
<link href="{{ if .OutputFormats.Get "json" }}{{ .Site.BaseURL }}feed.json{{ end }}" rel="alternate"
|
|
type="application/json" title="{{ .Site.Title }}" />
|
|
{{ end }}
|
|
|
|
<!-- Custom head tags -->
|
|
{{- if templates.Exists "partials/extra-head.html" -}}
|
|
{{ partial "extra-head.html" . }}
|
|
{{- end }}
|
|
|
|
<!-- Google Analytics internal template -->
|
|
{{- if .Site.GoogleAnalytics }}
|
|
{{ template "_internal/google_analytics.html" . }}
|
|
{{- end }}
|
|
|
|
<!-- Plausible.io -->
|
|
{{- if $.Site.Params.plausibleDataDomain }}
|
|
<script defer data-domain="{{ .Site.Params.plausibleDataDomain }}" src="{{ .Site.Params.plausibleScriptSource }}"></script>
|
|
{{- end}} |