Back to Hugo

Content

docs/content/en/methods/resource/Content.md

0.161.11.1 KB
Original Source

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

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

text
He travels the fastest who travels alone.

To get the content:

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

To get the size in bytes:

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

To create an inline image:

go-html-template
{{ with resources.Get "images/a.jpg" }}
  
{{ end }}

To create inline CSS:

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

To create inline JavaScript:

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