<h2>{{ .Subject }}</h2>
|
|
<ul class="index-recent-posts">
|
|
{{ range $post := .Posts }}
|
|
<a href="/post/{{ $post.ID }}">
|
|
<li>
|
|
<div>
|
|
<h4 class="index-recent-posts-title">{{ $post.Title }}</h4>
|
|
<p class="datetimebox">{{ FormatTimestamp $post.UpdatedAt }}</p>
|
|
</div>
|
|
</li>
|
|
</a>
|
|
{{ end }}
|
|
</ul>
|
|
<div class="paginate">
|
|
<ul>
|
|
<a href="/{{ StrToLower .Subject }}?page=0"><li><</li></a>
|
|
{{ $subj := StrToLower .Subject }}
|
|
{{ range $i := Iterate .PageCount }}
|
|
<a href="/{{ $subj }}?page={{ $i }}"><li>{{ PlusInt $i 1 }}</li></a>
|
|
{{end}}
|
|
<a href="/{{ StrToLower .Subject }}?page={{ MinusInt .PageCount 1 }}"><li>></li></a>
|
|
</ul>
|
|
</div>
|