宽度
Syntax
RESOURCE.Width
Returns
int
{{ with resources.Get "images/a.jpg" }}
{{ .Width }} → 600
{{ end }}
在渲染 img
元素时,使用 Width
和 Height
方法:
{{ with resources.Get "images/a.jpg" }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}">
{{ end }}