summaryrefslogtreecommitdiffstats
path: root/layouts
diff options
context:
space:
mode:
authorSerghei Iakovlev <egrep@protonmail.ch>2022-07-13 01:34:57 +0200
committerSerghei Iakovlev <egrep@protonmail.ch>2022-07-13 01:34:57 +0200
commit26d53eef3ab0d5644a73a1f3cf0b9480dd2fe459 (patch)
treed4a7726e209f84633271beca403538819d8a3f64 /layouts
parente94f38a2a654d90860564bd865d5ee7b4994649e (diff)
downloadgohugo-theme-ed-26d53eef3ab0d5644a73a1f3cf0b9480dd2fe459.tar.gz
Rename `.Params.featured_image` to `.Params.featuredImage` Front Matter param
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/schema.org/article.html4
-rw-r--r--layouts/partials/templates/opengraph.html4
-rw-r--r--layouts/partials/templates/twitter_cards.html4
3 files changed, 6 insertions, 6 deletions
diff --git a/layouts/partials/schema.org/article.html b/layouts/partials/schema.org/article.html
index 0c47dc8..b193acb 100644
--- a/layouts/partials/schema.org/article.html
+++ b/layouts/partials/schema.org/article.html
@@ -19,8 +19,8 @@
"@type": "WebPage",
"@id": {{ .Permalink }}
},
- "headline": {{ partial "title.html" . | htmlUnescape }},{{ if .Params.featured_image }}
- {{ $image := .Resources.GetMatch .Params.featured_image -}}
+ "headline": {{ partial "title.html" . | htmlUnescape }},{{ if .Params.featuredImage }}
+ {{ $image := .Resources.GetMatch .Params.featuredImage -}}
"image": [
{{ $image.Permalink }}
],{{ end }}
diff --git a/layouts/partials/templates/opengraph.html b/layouts/partials/templates/opengraph.html
index 89f1797..627605e 100644
--- a/layouts/partials/templates/opengraph.html
+++ b/layouts/partials/templates/opengraph.html
@@ -6,8 +6,8 @@
{{- $logo := resources.Get (site.Params.assets.logo | default "/img/open-graph-logo.png" ) -}}
-{{- if and .IsPage .Params.featured_image -}}
- {{- $image := .Resources.GetMatch .Params.featured_image }}
+{{- if and .IsPage .Params.featuredImage -}}
+ {{- $image := .Resources.GetMatch .Params.featuredImage }}
<meta property="og:image" content="{{ $image.Permalink }}">
<meta property="og:image:width" content="{{ $image.Width }}">
<meta property="og:image:height" content="{{ $image.Height }}">
diff --git a/layouts/partials/templates/twitter_cards.html b/layouts/partials/templates/twitter_cards.html
index 23c033b..40a6c3d 100644
--- a/layouts/partials/templates/twitter_cards.html
+++ b/layouts/partials/templates/twitter_cards.html
@@ -9,8 +9,8 @@
{{- $logo := resources.Get (site.Params.assets.logo | default "/img/open-graph-logo.png" ) -}}
- {{- if and .IsPage .Params.featured_image }}
- {{- $image := .Resources.GetMatch .Params.featured_image }}
+ {{- if and .IsPage .Params.featuredImage }}
+ {{- $image := .Resources.GetMatch .Params.featuredImage }}
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="{{ $image.Permalink }}">
{{- else }}