mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-01 02:57:17 +00:00
23 lines
514 B
Cheetah
23 lines
514 B
Cheetah
{{with .Data}}
|
|
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
|
|
{{template "navigation.tmpl" (WithContext .NavbarData $.Ctx)}}
|
|
<div class="page-title"> {{.Title}} </div>
|
|
|
|
{{template "postform.tmpl" (WithContext .PostContext $.Ctx)}}
|
|
|
|
{{range .Statuses}}
|
|
{{template "status.tmpl" (WithContext . $.Ctx)}}
|
|
{{end}}
|
|
|
|
<div class="pagination">
|
|
{{if .PrevLink}}
|
|
<a href="{{.PrevLink}}">prev</a>
|
|
{{end}}
|
|
{{if .NextLink}}
|
|
<a href="{{.NextLink}}">next</a>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "footer.tmpl"}}
|
|
{{end}}
|