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.
22 lines
379 B
Cheetah
22 lines
379 B
Cheetah
{{template "header.tmpl" .}}
|
|
<h1>Notes</h1>
|
|
{{if gt (len .Other) 0}}
|
|
<table>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Summary</th>
|
|
<th>Content</th>
|
|
</tr>
|
|
{{range $i, $n := .Other}}
|
|
<tr>
|
|
<td>{{$i}} <a href="{{$n.id}}">{{$n.id}}</a></td>
|
|
<td>{{$n.summary}}</td>
|
|
<td>{{$n.content}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
{{else}}
|
|
<p>No notes to see</p>
|
|
{{end}}
|
|
{{template "footer.tmpl" .}}
|