prevnext.html 775 B

1234567891011121314151617181920212223242526
  1. <div class="flex flex-row justify-around my-2">
  2. <h3 class="mb-1 mt-1 text-left mr-4">
  3. {{ if .PrevInSection }}
  4. <a
  5. href="{{ .PrevInSection.Permalink | relURL }}"
  6. title="{{ .PrevInSection.Title }}"
  7. >
  8. <i class="nav-menu fas fa-chevron-circle-left"></i>
  9. </a>
  10. {{ else }}
  11. <i class="text-gray-300 dark:text-gray-600 fas fa-chevron-circle-left"></i>
  12. {{ end }}
  13. </h3>
  14. <h3 class="mb-1 mt-1 text-left ml-4">
  15. {{ if .NextInSection }}
  16. <a
  17. href="{{ .NextInSection.Permalink | relURL }}"
  18. title="{{ .NextInSection.Title }}"
  19. >
  20. <i class="nav-menu fas fa-chevron-circle-right"></i>
  21. </a>
  22. {{ else }}
  23. <i class="text-gray-300 dark:text-gray-600 fas fa-chevron-circle-right"></i>
  24. {{ end }}
  25. </h3>
  26. </div>