mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-18 18:27:03 +01:00
layouts: Add imageConfig to set height and width
Hugo 0.18 introduced the imageConfig function which allows you to access the height and width of images, which makes bots consuming the structured data happy.
This commit is contained in:
parent
4d7a544dac
commit
bf9bca9656
@ -10,7 +10,11 @@
|
||||
{{- with .Params.images -}}{{ range first 1 . }}
|
||||
"image": {
|
||||
"@type": "ImageObject",
|
||||
"url": "{{ . | absURL }}"
|
||||
"url": "{{ . | absURL }}",
|
||||
{{ with (imageConfig (printf "/static/%s" .)) }}
|
||||
"height": "{{ .Height }}",
|
||||
"width": "{{ .Width }}"
|
||||
{{ end }}
|
||||
},
|
||||
{{- end -}}{{ end }}
|
||||
"url": "{{ printf "%s" .Permalink }}",
|
||||
|
Loading…
Reference in New Issue
Block a user