Add img-fluid class to image, gallery shortcode images

master
Will Faught 1 year ago
parent a225e88c52
commit 62367fe043

@ -51,7 +51,7 @@
{{ range $resources }}
{{ partial "paige/image.html" (dict
"breakpoints" $breakpoints
"class" $class
"class" (printf "img-fluid %s" $class)
"densities" $densities
"fetchpriority" $fetchpriority
"height" $height
@ -77,7 +77,7 @@
{{ range $resources }}
{{ partial "paige/image.html" (dict
"breakpoints" $breakpoints
"class" $class
"class" (printf "img-fluid %s" $class)
"densities" $densities
"fetchpriority" $fetchpriority
"height" $height

@ -21,7 +21,7 @@
{{ partial "paige/image.html" (dict
"alt" $alt
"breakpoints" $breakpoints
"class" $class
"class" (printf "img-fluid %s" $class)
"densities" $densities
"fetchpriority" $fetchpriority
"height" $height

Loading…
Cancel
Save