HUGO
News Docs Themes Community GitHub

Width

Applicable to images, returns the width of the given resource.

Syntax

RESOURCE.Width

Returns

int

Use this method with global resources, page resources, or remote resources.

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

Last updated: January 1, 0001
Improve this page