mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-31 03:45:24 +01:00 
			
		
		
		
	Use site function instead of .Site or $.Site
				
					
				
			- The site function provides global access to the same data as the .Site page method. - Current context (`.`) is never considered.
This commit is contained in:
		| @@ -1,5 +1,5 @@ | ||||
| <meta property="og:title" content="{{ .Title }}" /> | ||||
| <meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" /> | ||||
| <meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" /> | ||||
| <meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}" /> | ||||
| <meta property="og:url" content="{{ .Permalink }}" /> | ||||
| {{- if .Params.cover.image -}} | ||||
| @@ -19,7 +19,7 @@ | ||||
| {{- with $featured -}} | ||||
| <meta property="og:image" content="{{ $featured.Permalink }}"/> | ||||
| {{- else -}} | ||||
| {{- with $.Site.Params.images }}<meta property="og:image" content="{{ index . 0 | absURL }}"/>{{ end -}} | ||||
| {{- with site.Params.images }}<meta property="og:image" content="{{ index . 0 | absURL }}"/>{{ end -}} | ||||
| {{- end -}} | ||||
| {{- end -}} | ||||
| {{- end }} | ||||
| @@ -33,14 +33,14 @@ | ||||
|  | ||||
| {{- with .Params.audio }}<meta property="og:audio" content="{{ . }}" />{{ end }} | ||||
| {{- with .Params.locale }}<meta property="og:locale" content="{{ . }}" />{{ end }} | ||||
| {{- with .Site.Params.title }}<meta property="og:site_name" content="{{ . }}" />{{ end }} | ||||
| {{- with site.Params.title }}<meta property="og:site_name" content="{{ . }}" />{{ end }} | ||||
| {{- with .Params.videos }}{{- range . }} | ||||
| <meta property="og:video" content="{{ . | absURL }}" /> | ||||
| {{ end }}{{ end }} | ||||
|  | ||||
| {{- /* If it is part of a series, link to related articles */}} | ||||
| {{- $permalink := .Permalink }} | ||||
| {{- $siteSeries := .Site.Taxonomies.series }} | ||||
| {{- $siteSeries := site.Taxonomies.series }} | ||||
| {{ with .Params.series }}{{- range $name := . }} | ||||
|   {{- $series := index $siteSeries ($name | urlize) }} | ||||
|   {{- range $page := first 6 $series.Pages }} | ||||
| @@ -49,4 +49,4 @@ | ||||
| {{ end }}{{ end }} | ||||
|  | ||||
| {{- /* Facebook Page Admin ID for Domain Insights */}} | ||||
| {{- with .Site.Social.facebook_admin }}<meta property="fb:admins" content="{{ . }}" />{{ end }} | ||||
| {{- with site.Social.facebook_admin }}<meta property="fb:admins" content="{{ . }}" />{{ end }} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Aditya Telange
					Aditya Telange