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.
17 lines
317 B
Cheetah
17 lines
317 B
Cheetah
{{template "header.tmpl" .}}
|
|
<h1>Following</h1>
|
|
<ul>
|
|
{{if isString .Other.items}}
|
|
<tr>
|
|
<td><a href="{{.Other.items}}">{{.Other.items}}</a></td>
|
|
</tr>
|
|
{{else}}
|
|
{{range $i := seq (len .Other.items)}}
|
|
{{with (index .Other.items $i)}}
|
|
<li>{{.}}</li>
|
|
{{end}}
|
|
{{end}}
|
|
{{end}}
|
|
</ul>
|
|
{{template "footer.tmpl" .}}
|