mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-31 22:41:53 +02:00
Merge commit '35dec7c96f7ee3eb17dd444f7067f0c776fb56ae'
This commit is contained in:
27
docs/content/en/methods/resource/Width.md
Normal file
27
docs/content/en/methods/resource/Width.md
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
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" %}}
|
Reference in New Issue
Block a user