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:
		| @@ -2,23 +2,23 @@ | ||||
| <script type="application/ld+json"> | ||||
| { | ||||
|   "@context": "https://schema.org", | ||||
|   "@type": "{{- ( .Site.Params.schema.publisherType | default "Organization") | title -}}", | ||||
|   "name": {{ .Site.Title }}, | ||||
|   "url": {{ .Site.BaseURL }}, | ||||
|   "description": {{ .Site.Params.description | plainify | truncate 180 | safeHTML }}, | ||||
|   "thumbnailUrl": {{ .Site.Params.assets.favicon | default "favicon.ico" | absURL }}, | ||||
|   "@type": "{{- ( site.Params.schema.publisherType | default "Organization") | title -}}", | ||||
|   "name": {{ site.Title }}, | ||||
|   "url": {{ site.BaseURL }}, | ||||
|   "description": {{ site.Params.description | plainify | truncate 180 | safeHTML }}, | ||||
|   "thumbnailUrl": {{ site.Params.assets.favicon | default "favicon.ico" | absURL }}, | ||||
|   "sameAs": [ | ||||
|     {{- if .Site.Params.schema.sameAs }} | ||||
|       {{ range $i, $e := .Site.Params.schema.sameAs }}{{ if $i }}, {{ end }}{{ trim $e " " }}{{ end }} | ||||
|     {{- if site.Params.schema.sameAs }} | ||||
|       {{ range $i, $e := site.Params.schema.sameAs }}{{ if $i }}, {{ end }}{{ trim $e " " }}{{ end }} | ||||
|     {{- else}} | ||||
|       {{ range $i, $e := .Site.Params.SocialIcons }}{{ if $i }}, {{ end }}{{ trim $e.url " " }}{{ end }} | ||||
|       {{ range $i, $e := site.Params.SocialIcons }}{{ if $i }}, {{ end }}{{ trim $e.url " " }}{{ end }} | ||||
|     {{- end}} | ||||
|   ] | ||||
| } | ||||
| </script> | ||||
| {{- else if (or .IsPage .IsSection) }} | ||||
| {{/* BreadcrumbList */}} | ||||
| {{- $url := replace .Parent.Permalink ( printf "%s" .Site.BaseURL) "" }} | ||||
| {{- $url := replace .Parent.Permalink ( printf "%s" site.BaseURL) "" }} | ||||
| {{- $lang_url := strings.TrimPrefix ( printf "%s/" .Lang) $url }} | ||||
| {{- $bc_list := (split $lang_url "/")}} | ||||
|  | ||||
| @@ -31,7 +31,7 @@ | ||||
|   {{- range $index, $element := $bc_list }} | ||||
|  | ||||
|     {{- $scratch.Add "path" (printf "%s/" $element ) | safeJS }} | ||||
|     {{- $bc_pg := $.Site.GetPage ($scratch.Get "path") -}} | ||||
|     {{- $bc_pg := site.GetPage ($scratch.Get "path") -}} | ||||
|  | ||||
|     {{- if (and ($bc_pg) (gt (len . ) 0))}} | ||||
|     {{- if (and $index)}}, {{end }} | ||||
| @@ -83,7 +83,7 @@ | ||||
|   {{- end -}} | ||||
|   "datePublished": {{ .PublishDate }}, | ||||
|   "dateModified": {{ .Lastmod }}, | ||||
|   {{- with (.Params.author | default .Site.Params.author) }} | ||||
|   {{- with (.Params.author | default site.Params.author) }} | ||||
|   "author": | ||||
|     {{- if (or (eq (printf "%T" .) "[]string") (eq (printf "%T" .) "[]interface {}")) -}} | ||||
|   [{{- range $i, $v := . -}} | ||||
| @@ -105,11 +105,11 @@ | ||||
|     "@id": {{ .Permalink | safeHTML }} | ||||
|   }, | ||||
|   "publisher": { | ||||
|     "@type": "{{- ( .Site.Params.schema.publisherType | default "Organization") | title -}}", | ||||
|     "name": {{ .Site.Title }}, | ||||
|     "@type": "{{- ( site.Params.schema.publisherType | default "Organization") | title -}}", | ||||
|     "name": {{ site.Title }}, | ||||
|     "logo": { | ||||
|       "@type": "ImageObject", | ||||
|       "url": {{ .Site.Params.assets.favicon | default "favicon.ico" | absURL }} | ||||
|       "url": {{ site.Params.assets.favicon | default "favicon.ico" | absURL }} | ||||
|     } | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Aditya Telange
					Aditya Telange