list.html 843 B

123456789101112131415161718192021222324252627
  1. {{ define "main" }}
  2. <div class="posts-list">
  3. {{ partial "breadcrumbs" . }}
  4. {{ $paginator := .Paginate (where .Pages "Params.hidden" "ne" true) }}
  5. {{ range sort .Paginator.Pages }}
  6. <article class="book-posts mx-auto">
  7. <h2>
  8. <a href="{{ .RelPermalink }}">{{ .Title }}</a>
  9. </h2>
  10. <h5>
  11. <strong>{{ .Date.Format "January 2, 2006" }}</strong>
  12. </h5>
  13. {{$featured_image := index (.Params.images) 0}}
  14. {{ with $featured_image }}
  15. <img src="{{ $featured_image }}" class="featured-image">
  16. {{ end }}
  17. <p>
  18. {{- .Summary -}}
  19. {{ if .Truncated }}
  20. <a href="{{ .RelPermalink }}">...</a>
  21. {{ end }}
  22. </p>
  23. </article>
  24. {{ end }}
  25. {{ template "_internal/pagination.html" . }}
  26. </div>
  27. {{ end }}