gobyexample/template/index.tmpl
Mark McGranaghan a8fd1a1c40 before crazy
2012-10-09 12:54:47 -07:00

19 lines
384 B
Cheetah

<!DOCTYPE html>
<html>
<head>
<meta http-eqiv="content-type" content="text/html;charset=utf-8">
<title>Go by Example</title>
<link rel=stylesheet href="site.css">
</head>
<body>
<div id="intro">
<h2>Go by Example</h2>
<ul>
{{range .}}
<li><a href="{{.Id}}.html">{{.Name}}</a></li>
{{end}}
</ul>
</div>
</body>
</html>