hugo/docs/content/en/functions/resources/Copy.md
2024-08-09 15:17:43 +02:00

28 lines
649 B
Markdown

---
title: resources.Copy
description: Copies the given resource to the target path.
categories: []
action:
aliases: []
related: []
returnType: resource.Resource
signatures: [resources.Copy TARGETPATH RESOURCE]
---
```go-html-template
{{ 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:
```text
/img/new-image-name.jpg
```
{{% note %}}
Use the `resources.Copy` function with global, page, and remote resources.
{{% /note %}}