mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
27 lines
630 B
Markdown
27 lines
630 B
Markdown
---
|
|
title: Width
|
|
description: Applicable to images, returns the width of the given resource.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
related:
|
|
- methods/resource/Height
|
|
returnType: int
|
|
signatures: [RESOURCE.Width]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ with resources.Get "images/a.jpg" }}
|
|
{{ .Width }} → 600
|
|
{{ end }}
|
|
```
|
|
|
|
Use the `Width` and `Height` methods together when rendering an `img` element:
|
|
|
|
```go-html-template
|
|
{{ with resources.Get "images/a.jpg" }}
|
|
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}">
|
|
{{ end }}
|
|
```
|
|
|
|
{{% include "methods/resource/_common/global-page-remote-resources.md" %}}
|