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

649 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
{{ 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. {{% /note %}}