aboutsummaryrefslogtreecommitdiffstats
path: root/template.go
blob: 7c13451876f46ddc65fd2b72e01b19131d5a43fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

var tpltext = `<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{.Title}}</title>
</head>
<body>
<pre>
{{range .Lines}} {{if .Link}}({{.Type}}) <a href="{{.Link}}">{{.Text}}</a>{{else}}      {{.Text}}{{end}}
{{end}}</pre>
</body>
</html>`