Width
Applicable to images, returns the width of the given resource.
Syntax
RESOURCE.Width
Returns
int
{{ with resources.Get "images/a.jpg" }}
{{ .Width }} → 600
{{ end }}
Use the Width
and Height
methods together when rendering an img
element:
{{ with resources.Get "images/a.jpg" }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}">
{{ end }}
Use this method with global resources, page resources, or remote resources.
Last updated:
December 4, 2023
:
Squashed 'docs/' changes from 4d936aee6..4dd2d6415 (35dec7c96)
Improve this page