forked from gobuffalo/buffalo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plain.go
27 lines (25 loc) · 946 Bytes
/
plain.go
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
package render
// Plain renders the named files using the 'text/html'
// content type and the github.com/gobuffalo/plush
// package for templating. If more than 1 file is provided
// the second file will be considered a "layout" file
// and the first file will be the "content" file which will
// be placed into the "layout" using "<%= yield %>".
func Plain(names ...string) Renderer {
e := New(Options{})
return e.Plain(names...)
}
// Plain renders the named files using the 'text/plain'
// content type and the github.com/gobuffalo/plush
// package for templating. If more than 1 file is provided
// the second file will be considered a "layout" file
// and the first file will be the "content" file which will
// be placed into the "layout" using "<%= yield %>".
func (e *Engine) Plain(names ...string) Renderer {
hr := templateRenderer{
Engine: e,
contentType: "text/plain; charset=utf-8",
names: names,
}
return hr
}