- Getting Started
- Liquid reference
- Filters reference
- Tags reference
- Localization
- Theme structure
- Theme sections
- Theme assets
- Theme config
- Theme layout
- Theme templates
-
- article.liquid
- blog.liquid
- cart.liquid
- collection.liquid
- customer/account.liquid
- customer/addresses.liquid
- customer/details.liquid
- customer/login.liquid
- customer/order.liquid
- customer/register.liquid
- customer/reset-password.liquid
- home.liquid
- page.no-heading.liquid
- products.liquid
- search.liquid
- list-collections.liquid
- store-locator.liquid
- 404.liquid
- customer/activate_account.liquid
- customer/orders.liquid
- Submission
blog
The blog object represents a blog and is available on the blog template.
The blog object has the following attributes:
blog.title
Returns the title of the blog.
{{ blog.title }}
blog.url
Returns the relative URL of the blog.
blog.description
Returns the description of the blog.
blog.articles
Returns an array of the article objects that belong to the blog.
{% for article in blog.articles %}
<a href="{{ article.url }}">{{ article.title }}</a>
{% endfor %}