[PATCH] tpl/embedded: Make Open Graph's series optional

cherry-picked from b82b547acb
This commit is contained in:
Razon Yang 2023-11-04 15:01:23 +05:30 committed by Aditya Telange
parent 86362ebd72
commit 102e089bc3
1 changed files with 2 additions and 0 deletions

View File

@ -41,12 +41,14 @@
{{- /* If it is part of a series, link to related articles */}}
{{- $permalink := .Permalink }}
{{- $siteSeries := site.Taxonomies.series }}
{{- if $siteSeries }}
{{ with .Params.series }}{{- range $name := . }}
{{- $series := index $siteSeries ($name | urlize) }}
{{- range $page := first 6 $series.Pages }}
{{- if ne $page.Permalink $permalink }}<meta property="og:see_also" content="{{ $page.Permalink }}" />{{ end }}
{{- end }}
{{ end }}{{ end }}
{{- end }}
{{- /* Facebook Page Admin ID for Domain Insights */}}
{{- with site.Social.facebook_admin }}<meta property="fb:admins" content="{{ . }}" />{{ end }}