Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

20 lines
461B

  1. {{ if or .Paginator.HasPrev .Paginator.HasNext }}
  2. <div class="pages">
  3. {{ if .Paginator.HasPrev }}
  4. <a class="icon pages-icon" href="{{ .Paginator.Prev.URL }}" rel="prev">
  5. <i class="fa fa-arrow-left"></i>
  6. </a>
  7. {{ end }}
  8. {{ if .Paginator.HasNext }}
  9. <a class="icon pages-icon" href="{{ .Paginator.Next.URL }}" rel="next">
  10. <i class="fa fa-arrow-right"></i>
  11. </a>
  12. {{ end }}
  13. </div>
  14. {{ end }}