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.

list.html 944B

123456789101112131415161718192021222324252627282930
  1. {{ define "main" }}
  2. {{ partial "navigation.html" . }}
  3. {{"<!-- Start Blog Section -->" | safeHTML}}
  4. <section id="blog" class="section">
  5. <div class="container">
  6. <div class="row">
  7. <div class="col-12">
  8. {{"<!-- section title -->" | safeHTML}}
  9. <div class="title text-center wow fadeInDown">
  10. <h2>{{ with i18n "blogTitle" }} {{ index (split . " ") 0 | safeHTML }} {{ end }}<span class="color">
  11. {{ with i18n "blogTitle" }} {{ index (split . " ") 1 | safeHTML }} {{ end }}</span></h2>
  12. <div class="border-meghna"></div>
  13. </div>
  14. </div>
  15. {{"<!-- /section title -->" | safeHTML}}
  16. {{ $paginator := .Paginate .Data.Pages }}
  17. {{ range $paginator.Pages }}
  18. {{ .Render "article" }}
  19. {{ end }}
  20. <div class="col-12">
  21. {{ template "_internal/pagination.html" . }}
  22. </div>
  23. </div>
  24. </div>
  25. </section>
  26. {{"<!-- /blog -->" | safeHTML}}
  27. {{ end }}