2020-01-14 16:57:16 +00:00
|
|
|
{{with .Data}}
|
|
|
|
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
|
|
|
|
{{template "navigation.tmpl" (WithContext .NavbarData $.Ctx)}}
|
2019-12-25 04:30:21 +00:00
|
|
|
<div class="page-title"> {{.Title}} </div>
|
2019-12-13 18:08:26 +00:00
|
|
|
|
2020-01-14 16:57:16 +00:00
|
|
|
{{template "postform.tmpl" (WithContext .PostContext $.Ctx)}}
|
2019-12-13 18:08:26 +00:00
|
|
|
|
|
|
|
{{range .Statuses}}
|
2020-01-14 16:57:16 +00:00
|
|
|
{{template "status.tmpl" (WithContext . $.Ctx)}}
|
2019-12-13 18:08:26 +00:00
|
|
|
{{end}}
|
|
|
|
|
2019-12-15 06:55:13 +00:00
|
|
|
<div class="pagination">
|
2020-01-28 17:51:00 +00:00
|
|
|
{{if .PrevLink}}
|
2019-12-15 06:55:13 +00:00
|
|
|
<a href="{{.PrevLink}}">prev</a>
|
|
|
|
{{end}}
|
2020-01-28 17:51:00 +00:00
|
|
|
{{if .NextLink}}
|
2019-12-15 06:55:13 +00:00
|
|
|
<a href="{{.NextLink}}">next</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2020-01-14 16:57:16 +00:00
|
|
|
|
2019-12-13 18:08:26 +00:00
|
|
|
{{template "footer.tmpl"}}
|
2020-01-14 16:57:16 +00:00
|
|
|
{{end}}
|