You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
638 B
Cheetah
24 lines
638 B
Cheetah
{{define "title"}}Home{{end}}
|
|
|
|
{{define "main" -}}
|
|
{{ if .Snippets}}
|
|
<table>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Created</th>
|
|
<th>ID</th>
|
|
</tr>
|
|
{{range .Snippets}}
|
|
<tr>
|
|
<td><a href='/snippet/view/{{.ID}}'>{{.Title.String}}</a></td>
|
|
<!-- this is an example of pipelineing instead of function call -->
|
|
<td>{{.CreatedAt | humanDate }}</td>
|
|
<td>#{{.ID}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
{{else}}
|
|
<p>There's nothing to see yet!</p>
|
|
{{end}}
|
|
{{- end -}}
|