---
title: 'Liquid objects: blogs'
description: All of the blogs in the store.
api_name: liquid
source_url:
html: 'https://shopify.dev/docs/api/liquid/objects/blogs'
md: 'https://shopify.dev/docs/api/liquid/objects/blogs.md'
---
# blogs
All of the blogs in the store.
### Directly accessible in
* Global
You can use `blogs` to access a blog by its [handle](https://shopify.dev/docs/api/liquid/basics#handles).
```liquid
{% for article in blogs.potion-notions.articles %}
{{- article.title | link_to: article.url }}
{% endfor %}
```
##### Code
```
{% for article in blogs.potion-notions.articles %}
{{- article.title | link_to: article.url }}
{% endfor %}
```
## Output
```html
Homebrew: start making potions at home
New potions for spring
How to tell if you're out of invisibility potion
```