go-examples/tpl-text/tpl.html

19 lines
297 B
HTML
Raw Normal View History

2017-07-25 18:05:00 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>{{ .MyTitle }}</h1>
<h2>{{ myFunc "hello" }}</h2>
<ul>
{{ range .Lst }}
<li>{{ . }}</li>
{{ else }}
<li>VIDE</li>
{{ end }}
</ul>
<p>{{ .Thing }}</p>
</body>
</html>