Blogs
From Shopify Wiki
Editing Blogs
The liquid variable blogs contains a collection of all of this shops blogs and articles. By calling a blogs handle on the blogs drop you will either receive a blog object.
Example usage:
<ul>
{% for article in blogs.myblog.articles %}
<li>{{ article.title }}</li>
{% endfor %}
</ul>
This lists all article titles for the blog called myblog
