blob: eeb264151367633e48c4e9a61145ab9a786b247d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ template "base.html" . }}
{{ define "content" }}
<div>
<h2>Posts</h2>
<ul>
{{ range .Pages }}
{{ if eq .Type "post" }}
<li><a href="/{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
{{ end }}
</ul>
</div>
{{ end }}
|