+ {{ $posts := where .RegularPagesRecursive "Layout" "!=" "search" }}
+ {{ $paginator := .Paginate $posts 12 }}
+ {{ range $paginator.Pages }}
+ {{ if .Layout }}
+ {{/* ignore the search.md file*/}}
+ {{ else }}
+ {{ partial "cards/post.html" . }}
+ {{ end }}
+ {{ end }}
+
+
+ {{ template "_internal/pagination.html" . }}
+
+