hugo/docs/content/en/methods/resource/Content.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

1.3 KiB

title description categories keywords action toc
Content Returns the content of the given resource.
related returnType signatures
any
RESOURCE.Content

The Content method on a Resource object returns template.HTML when the resource type is page, otherwise it returns a string.

{{< code file=assets/quotations/kipling.txt >}} He travels the fastest who travels alone. {{< /code >}}

To get the content:

{{ with resources.Get "quotations/kipling.txt" }}
  {{ .Content }} → He travels the fastest who travels alone.
{{ end }}

To get the size in bytes:

{{ with resources.Get "quotations/kipling.txt" }}
  {{ .Content | len }} → 42
{{ end }}

To create an inline image:

{{ with resources.Get "images/a.jpg" }}
  <img src="data:{{ .MediaType.Type }};base64,{{ .Content | base64Encode }}">
{{ end }}

To create inline CSS:

{{ with resources.Get "css/style.css" }}
  <style>{{ .Content | safeCSS }}</style>
{{ end }}

To create inline JavaScript:

{{ with resources.Get "js/script.js" }}
  <script>{{ .Content | safeJS }}</script>
{{ end }}

{{% include "methods/resource/_common/global-page-remote-resources.md" %}}