The paginate layout displays paginated posts as cards. It is useful for a traditional blog index where featured posts and standard post cards are shown in a grid.
To use the Paginate layout, create an index page for your blog:
---
layout: paginate
title: Blog
---
Enable Jekyll pagination in _config.yml:
paginate: 5
paginate_path: "/blog/page/:num"
For the example above, the page using layout: paginate should live at blog/index.html.
paginator.posts.post-feature-card.html for featured posts and the first post in the collection.post-card.html for the remaining posts.paginator_nav.html.---
layout: paginate
title: Blog
---
Latest posts from the site.