mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-03 12:12:37 +00:00
1.2 KiB
1.2 KiB
title, description, categories, keywords, params
| title | description | categories | keywords | params | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| template | Executes the given template, optionally passing context. |
|
Use the template function to execute a defined template:
{{ template "foo" (dict "answer" 42) }}
{{ define "foo" }}
{{ printf "The answer is %v." .answer }}
{{ end }}
The example above can be rewritten using an inline partial template:
{{ partial "inline/foo.html" (dict "answer" 42) }}
{{ define "_partials/inline/foo.html" }}
{{ printf "The answer is %v." .answer }}
{{ end }}
The key distinctions between the preceding two examples are:
- Inline partials are globally scoped. That means that an inline partial defined in one template may be called from any template.
- Leveraging the
partialCachedfunction when calling an inline partial allows for performance optimization through result caching. - An inline partial can
returna value of any data type instead of rendering a string.
{{% include "/_common/functions/go-template/text-template.md" %}}