next-prev-navigator.html 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <div class="row next-prev-navigator">
  2. {{ $currentPage := . }}
  3. {{ range (where site.RegularPages.ByDate "Type" "in" site.Params.mainSections )}}
  4. {{ if eq .RelPermalink $currentPage.RelPermalink }}
  5. {{ if .Next }}
  6. {{ if (in site.Params.mainSections .Next.Type) }}
  7. <div class="col-md-6 previous-article">
  8. <a href="{{.Next.RelPermalink}}" title="{{ .Next.Title }}" class="btn btn-outline-info">
  9. <div><i class="fas fa-chevron-circle-left"></i> {{ i18n "prev" }}</div>
  10. <div class="next-prev-text">{{ .Next.Title }}</div>
  11. </a>
  12. </div>
  13. {{ end }}
  14. {{ end }}
  15. {{ if .Prev }}
  16. {{ if (in site.Params.mainSections .Prev.Type) }}
  17. {{ $columnWidth:="col-md-12" }}
  18. {{ if .Next }}
  19. {{ if (in site.Params.mainSections .Next.Type) }}
  20. {{ $columnWidth = "col-md-6" }}
  21. {{ end }}
  22. {{ end}}
  23. <div class="{{ $columnWidth }} next-article">
  24. <a href="{{ .Prev.RelPermalink }}" title="{{ .Prev.Title }}" class="btn btn-outline-info">
  25. <div>{{ i18n "next" }} <i class="fas fa-chevron-circle-right"></i></div>
  26. <div class="next-prev-text">{{ .Prev.Title }}</div>
  27. </a>
  28. </div>
  29. {{ end }}
  30. {{ end }}
  31. {{ end }}
  32. {{ end }}
  33. </div>