You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
724 B

  1. <h2>{{ .Subject }}</h2>
  2. <ul class="index-recent-posts">
  3. {{ range $post := .Posts }}
  4. <a href="/post/{{ $post.ID }}">
  5. <li>
  6. <div>
  7. <h4 class="index-recent-posts-title">{{ $post.Title }}</h4>
  8. <p class="datetimebox">{{ FormatTimestamp $post.UpdatedAt }}</p>
  9. </div>
  10. </li>
  11. </a>
  12. {{ end }}
  13. </ul>
  14. <div class="paginate">
  15. <ul>
  16. <a href="/{{ StrToLower .Subject }}?page=0"><li>&lt;</li></a>
  17. {{ $subj := StrToLower .Subject }}
  18. {{ range $i := Iterate .PageCount }}
  19. <a href="/{{ $subj }}?page={{ $i }}"><li>{{ PlusInt $i 1 }}</li></a>
  20. {{end}}
  21. <a href="/{{ StrToLower .Subject }}?page={{ MinusInt .PageCount 1 }}"><li>&gt;</li></a>
  22. </ul>
  23. </div>