ralfhersel 2024-11-10 17:56:11 +01:00
rodzic 63245a841c
commit 626462ba42
5 zmienionych plików z 15 dodań i 4 usunięć

Wyświetl plik

@ -1,3 +1,8 @@
2024/11/10 - Version 0.30
Fixed some minor warnings and errors caused by deprecates.
2023/07/13 - Version 0.29
Quotes

Wyświetl plik

@ -5,7 +5,6 @@ theme: hugo-fresh
googleAnalytics:
disableKinds:
- taxonomy
- taxonomyTerm
markup:
goldmark:
renderer:

Wyświetl plik

@ -1,4 +1,4 @@
{{- $inServerMode := .Site.IsServer }}
{{- $inServerMode := hugo.IsServer }}
{{- $sass := "style.sass" }}
{{- $cssTarget := "css/style.css" }}
{{- $cssOpts := cond ($inServerMode) (dict "targetPath" $cssTarget "enableSourceMap" true) (dict "targetPath" $cssTarget "outputStyle" "compressed") }}

Wyświetl plik

@ -1,4 +1,3 @@
{{ template "_internal/google_analytics_async.html" . }}
{{ if eq .Site.Params.openGraph true }}
{{ template "_internal/opengraph.html" . }}
{{ end }}

Wyświetl plik

@ -0,0 +1,8 @@
{{ template "_internal/google_analytics_async.html" . }}
{{ if eq .Site.Params.openGraph true }}
{{ template "_internal/opengraph.html" . }}
{{ end }}
<meta name="description" content="{{ if .Params.summary }}{{ .Params.summary }}{{ else if .Site.Params.Description }}{{ .Site.Params.Description }}{{ else }}Hardcoded description; the author should update :){{ end }}" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">