summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/render.md
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-10-21 10:21:37 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-10-21 10:21:51 +0200
commit39121de4d991bdcf5f202da4d8d81a8ac6c149fc (patch)
tree97e0b638fea1d898de9e297732d1044b49bfba8e /docs/content/en/functions/render.md
parent180195aa342777fece1b29a08ec89456d7996c61 (diff)
docs: Replace /docs
Diffstat (limited to 'docs/content/en/functions/render.md')
-rw-r--r--docs/content/en/functions/render.md33
1 files changed, 0 insertions, 33 deletions
diff --git a/docs/content/en/functions/render.md b/docs/content/en/functions/render.md
deleted file mode 100644
index e3909bde3..000000000
--- a/docs/content/en/functions/render.md
+++ /dev/null
@@ -1,33 +0,0 @@
----
-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/