aboutsummaryrefslogtreecommitdiff
path: root/themes/hugo-theme-stack/layouts/partials/head/opengraph/provider/base.html
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-11-16 19:32:18 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-11-17 01:28:57 +0300
commit239d68f94c6250276850fbe95eaa6cdd5c38fb26 (patch)
treec576da169afc442f51eae6213ad0ff749ed86589 /themes/hugo-theme-stack/layouts/partials/head/opengraph/provider/base.html
parent8e79098193fd0a8b65305dd8054cf7c424c60bc5 (diff)
Своя тема, полностью всё переделал
Diffstat (limited to 'themes/hugo-theme-stack/layouts/partials/head/opengraph/provider/base.html')
-rw-r--r--themes/hugo-theme-stack/layouts/partials/head/opengraph/provider/base.html43
1 files changed, 0 insertions, 43 deletions
diff --git a/themes/hugo-theme-stack/layouts/partials/head/opengraph/provider/base.html b/themes/hugo-theme-stack/layouts/partials/head/opengraph/provider/base.html
deleted file mode 100644
index 055745d..0000000
--- a/themes/hugo-theme-stack/layouts/partials/head/opengraph/provider/base.html
+++ /dev/null
@@ -1,43 +0,0 @@
-{{- $title := partialCached "data/title" . .RelPermalink -}}
-{{- $description := partialCached "data/description" . .RelPermalink -}}
-
-<meta property='og:title' {{ printf "content=%q" $title | safeHTMLAttr }}>
-<meta property='og:description' {{ printf "content=%q" $description | safeHTMLAttr }}>
-<meta property='og:url' content='{{ .Permalink }}'>
-<meta property='og:site_name' content='{{ .Site.Title }}'>
-<meta property='og:type' content='
- {{- if .IsPage -}}
- article
- {{- else -}}
- website
- {{- end -}}
-'>
-
-{{- with .Params.locale -}}
- <meta property='og:locale' content='{{ . }}'>
-{{- end -}}
-
-{{- if .IsPage -}}
- <meta property='article:section' content='{{ .Section | title }}' />
- {{- range .Params.tags -}}
- <meta property='article:tag' content='{{ . }}' />
- {{- end -}}
-{{- end -}}
-
-{{- if .IsPage -}}
- {{- if not .Date.IsZero -}}
- <meta property='article:published_time' content='{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}'/>
- {{- end -}}
- {{- if not .Lastmod.IsZero -}}
- <meta property='article:modified_time' content='{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}'/>
- {{- end -}}
-{{- else -}}
- {{- if not .Site.Lastmod.IsZero -}}
- <meta property='og:updated_time' content='{{ .Site.Lastmod.Format " 2006-01-02T15:04:05-07:00 " | safeHTML }}'/>
- {{- end -}}
-{{- end -}}
-
-{{ $image := partialCached "helper/image" (dict "Context" . "Type" "opengraph") .RelPermalink "opengraph" }}
-{{- if $image.exists -}}
- <meta property='og:image' content='{{ absURL $image.permalink }}' />
-{{- end -}} \ No newline at end of file