mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-01 08:00:05 +03:00
651 B
651 B
title | description | categories | params | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
resources.Copy | Copies the given resource to the target path. |
|
{{ with resources.Get "images/a.jpg" }}
{{ with resources.Copy "img/new-image-name.jpg" . }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
{{ end }}
{{ end }}
The relative URL of the new published resource will be:
/img/new-image-name.jpg
Note
Use the
resources.Copy
function with global, page, and remote resources.