url = "/blogs" layout = "default" title = "Blogs" [collection] handle = "Blog\Post" sortColumn = "published_at" sortDirection = "desc" ==
{% set posts = collection.paginate(12) %} {% for post in posts %}
{{ post.title }}

{{ post.title }}

{{ post.featured_text }}

Read More
{% if not loop.index%3 %}
{% endif %} {% endfor %}
{{ pager(posts) }}