summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/render.md
blob: e3909bde36777687f688961dfb5f50527bf45dc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
title: .Render
description: Takes a view to apply when rendering content.
godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
categories: [functions]
menu:
  docs:
    parent: "functions"
keywords: [views]
signature: [".Render LAYOUT"]
workson: []
hugoversion:
relatedfuncs: []
deprecated: false
aliases: []
---

The view is an alternative layout and should be a file name that points to a template in one of the locations specified in the documentation for [Content Views](/templates/views).

This function is only available when applied to a single piece of content within a [list context][].

This example could render a piece of content using the content view located at `/layouts/_default/summary.html`:

```
{{ range .Pages }}
    {{ .Render "summary"}}
{{ end }}
```

[list context]: /templates/lists/