learn-go/snippetbox/ui/html/pages/home.tmpl
2024-01-25 14:08:58 -08:00

24 lines
518 B
Cheetah

{{define "title"}}Home{{end}}
{{define "main"}}
<h2>Latest Snippets</h2>
{{if .Snippets}}
<table>
<tr>
<th>Title</th>
<th>Created</th>
<th>ID</th>
</tr>
{{range .Snippets}}
<tr>
<td><a href='/snippet/view?id={{.ID}}'>{{.Title}}</td>
<td>{{.Created}}</td>
<td>{{.ID}}</td>
</tr>
{{else}}
<p>There's nothing to see here... yet!</p>
{{end}}
</table>
{{end}}
{{end}}