-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathex.go
36 lines (34 loc) · 1.08 KB
/
ex.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
28
29
30
31
32
33
34
35
36
/*
* CODE GENERATED AUTOMATICALLY WITH
* github.com/wlbr/templify
* THIS FILE SHOULD NOT BE EDITED BY HAND
*/
package main
// exTemplate is a generated function returning the template as a string.
// That string should be parsed by the functions of the golang's template package.
func exTemplate() string {
var tmpl = "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n" +
"\n" +
"<html itemscope itemtype=\"http://schema.org/\">\n" +
"<head>\n" +
" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n" +
" {{.Head}}\n" +
" <title>{{.Title}}</title>\n" +
"</head>\n" +
"<body>\n" +
" <div id=\"Center\">\n" +
" <div id=\"Header\">\n" +
" <h1>Firstline</h1>\n" +
" </div>\n" +
" <div id=\"Content\">\n" +
" <!-- =============================================== -->\n" +
"\n" +
" {{.Content}}\n" +
"\n" +
" <!-- =============================================== -->\n" +
" </div>\n" +
" </div>\n" +
"</body>\n" +
"</html>"
return tmpl
}