learn-go/snippetbox/ui/html/pages/home.tmpl

24 lines
525 B
Cheetah
Raw Normal View History

2024-01-23 19:19:53 +00:00
{{define "title"}}Home{{end}}
{{define "main"}}
2024-01-23 05:05:35 +00:00
<h2>Latest Snippets</h2>
2024-01-25 22:08:58 +00:00
{{if .Snippets}}
<table>
<tr>
<th>Title</th>
<th>Created</th>
<th>ID</th>
</tr>
{{range .Snippets}}
<tr>
2024-01-26 06:01:12 +00:00
<td><a href='/snippet/view/{{.ID}}'>{{.Title}}</td>
2024-01-25 23:43:07 +00:00
<td>{{humanDate .Created}}</td>
2024-01-25 22:08:58 +00:00
<td>{{.ID}}</td>
</tr>
{{else}}
<p>There's nothing to see here... yet!</p>
{{end}}
</table>
{{end}}
2024-01-23 19:19:53 +00:00
{{end}}