mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
9b0050e9aa
git-subtree-dir: docs git-subtree-split: 5c085a37b297bf12f59efeaae591418ec025c10d
630 B
630 B
title | description | categories | keywords | action | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Width | Applicable to images, returns the width of the given resource. |
|
{{ 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 }}
{{% include "methods/resource/_common/global-page-remote-resources.md" %}}