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

23 lines
554 B
Cheetah

<!DOCTYPE html>
<html>
<head>
<meta http-eqiv="content-type" content="text/html;charset=utf-8">
<title>Go by Example: {{.Name}}</title>
<link rel=stylesheet href="site.css">
</head>
<body>
<div class="chapter" id="{{.Id}}">
<table cellspacing="0" cellpadding="0">
<tbody>
{{range .Segs}}
<tr>
<td class=docs>{{.DocsRendered}}</td>
<td class="{{.CodeClasses}}">{{.CodeRendered}}</td>
</tr>
{{end}}
</tbody>
</table>
</div>
</body>
</html>