Add ".Render" to the list of functions.
authorJeff Ramnani <jeff@jefframnani.com>
Fri, 22 May 2015 16:43:29 +0000 (11:43 -0500)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 22 May 2015 17:38:01 +0000 (19:38 +0200)
Fixes: #1153
docs/content/templates/functions.md

index b400f17b021595fca4c430ec0e443d0c7234fad3..2fdfa641adaad09f64edcfe21deb9bcf415554e3 100644 (file)
@@ -453,6 +453,22 @@ Takes a string and sanitizes it for usage in URLs, converts spaces to "-".
 e.g. `<a href="/tags/{{ . | urlize }}">{{ . }}</a>`
 
 
+
+## Content Views
+
+### Render
+Takes a view to render the content with.  The view is an alternate 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 on a piece of content, and in list context.
+
+This example could render a piece of content using the content view located at `/layouts/_default/summary.html`:
+
+    {{ range .Data.Pages }}
+        {{ .Render "summary"}}
+    {{ end }}
+
+
+
 ## Advanced
 
 ### apply