hugo/docs/content/en/functions/resources/Copy.md
Bjørn Erik Pedersen 5fd1e74903
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
2024-01-27 10:48:57 +01:00

761 B

title description categories action
resources.Copy Copies the given resource to the target path.
aliases related returnType signatures
resource.Resource
resources.Copy TARGETPATH RESOURCE

{{< new-in 0.100.0 >}}

{{ 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

The target path must be different than the source path, as shown in the example above.

{{% note %}} Use the resources.Copy function with global, page, and remote resources. {{% /note %}}