Height
Applicable to images, returns the height of the given resource.
Syntax
RESOURCE.Height
Returns
int
Use this method with global resources, page resources, or remote resources.
{{ with resources.Get "images/a.jpg" }}
{{ .Height }} → 400
{{ 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 }}
Last updated:
March 5, 2025
:
content: Remove "related" array from function and method pages (2fcd21ee5)
Improve this page