description = "Displays a small feed of latest news" [viewBag] snippetCode = "news" snippetName = "Latest News" [blogPosts] pageNumber = "{{ :page }}" postsPerPage = "10" noPostsMessage = "No posts found" sortOrder = "published_at desc" categoryPage = "blog/category" postPage = "blog/post" ==
{% for post in blogPosts.posts.take(5) %}
{{ post.published_at|date('M') }} {{ post.published_at|date('d') }}
{{ post.title }}.

{{ post.excerpt }}

{% else %}

There are no posts to display. You know what they say, no news is good news!

{% endfor %}