timeline.tmpl 392 B

12345678910111213141516171819
  1. {{with .Data}}
  2. {{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
  3. <div class="page-title"> {{.Title}} </div>
  4. {{range .Statuses}}
  5. {{template "status.tmpl" (WithContext . $.Ctx)}}
  6. {{end}}
  7. <div class="pagination">
  8. {{if .PrevLink}}
  9. <a href="{{.PrevLink}}">[prev]</a>
  10. {{end}}
  11. {{if .NextLink}}
  12. <a href="{{.NextLink}}">[next]</a>
  13. {{end}}
  14. </div>
  15. {{template "footer.tmpl"}}
  16. {{end}}