Shopify — Blog on Homepage / Index

Somehow this isn’t easy information to find.

Blogs can be accessed via the global variable “blogs”

blogs.my_blog.articles is an array of blog posts in the blog named my_blog.

{% assign blog = blogs.my_blog_name %}

{% for article in blog.articles %}
    {{ article.content }}
{% endfor %}

Leave a Comment