mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
9b0050e9aa
git-subtree-dir: docs git-subtree-split: 5c085a37b297bf12f59efeaae591418ec025c10d
49 lines
1.2 KiB
Markdown
49 lines
1.2 KiB
Markdown
---
|
|
title: template
|
|
description: Executes the given template, optionally passing context.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: []
|
|
related:
|
|
- functions/go-template/define
|
|
- functions/partials/Include
|
|
- functions/partials/IncludeCached
|
|
returnType:
|
|
signatures: ['template NAME [CONTEXT]']
|
|
---
|
|
|
|
Use the `template` function to execute [internal templates]. For example:
|
|
|
|
```go-html-template
|
|
{{ range (.Paginate .Pages).Pages }}
|
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
|
{{ end }}
|
|
{{ template "_internal/pagination.html" . }}
|
|
```
|
|
|
|
You can also use the `template` function to execute a defined template:
|
|
|
|
```go-html-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:
|
|
|
|
```go-html-template
|
|
{{ partial "inline/foo.html" (dict "answer" 42) }}
|
|
|
|
{{ define "partials/inline/foo.html" }}
|
|
{{ printf "The answer is %v." .answer }}
|
|
{{ end }}
|
|
```
|
|
|
|
{{% include "functions/go-template/_common/text-template.md" %}}
|
|
|
|
[`partial`]: /functions/partials/include/
|
|
[inline partial]: /templates/partials/#inline-partials
|
|
[internal templates]: /templates/internal
|