Width
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 }}