section_pager.html 723 B

123456789101112131415161718
  1. {{ $str := "" }}
  2. <div class="post-nav">
  3. {{if .NextInSection}}
  4. {{/* For the Book layout, prev/next labels are reversed. */}}
  5. {{ if in (slice "docs" "book") .Type }}{{ $str = "previous" }}{{else}}{{ $str = "next" }}{{end}}
  6. <div class="post-nav-item">
  7. <div class="meta-nav">{{ i18n $str }}</div>
  8. <a href="{{.NextInSection.RelPermalink}}" rel="next">{{.NextInSection.Title}}</a>
  9. </div>
  10. {{end}}
  11. {{if .PrevInSection}}
  12. {{ if in (slice "docs" "book") .Type }}{{ $str = "next" }}{{else}}{{ $str = "previous" }}{{end}}
  13. <div class="post-nav-item">
  14. <div class="meta-nav">{{ i18n $str }}</div>
  15. <a href="{{.PrevInSection.RelPermalink}}" rel="prev">{{.PrevInSection.Title}}</a>
  16. </div>
  17. {{end}}
  18. </div>