We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86362eb commit 102e089Copy full SHA for 102e089
1 file changed
layouts/partials/templates/opengraph.html
@@ -41,12 +41,14 @@
41
{{- /* If it is part of a series, link to related articles */}}
42
{{- $permalink := .Permalink }}
43
{{- $siteSeries := site.Taxonomies.series }}
44
+{{- if $siteSeries }}
45
{{ with .Params.series }}{{- range $name := . }}
46
{{- $series := index $siteSeries ($name | urlize) }}
47
{{- range $page := first 6 $series.Pages }}
48
{{- if ne $page.Permalink $permalink }}<meta property="og:see_also" content="{{ $page.Permalink }}" />{{ end }}
49
{{- end }}
50
{{ end }}{{ end }}
51
+{{- end }}
52
53
{{- /* Facebook Page Admin ID for Domain Insights */}}
54
{{- with site.Social.facebook_admin }}<meta property="fb:admins" content="{{ . }}" />{{ end }}
0 commit comments