# Blog
The `blog` object represents a blog in the store, providing access to articles and recent updates.
## Usage Example
```liquid
{%- comment -%} List all articles in the blog with title, summary, and link {%- endcomment -%}
{% for article in blog.articles %}
-
{{ article.title }}
{{ article.summary }}
By {{ article.author }} on {{ article.created_at | date: '%Y-%m-%d' }}
{% endfor %}
{%- comment -%} Show the 3 most recent articles {%- endcomment -%}
{% for article in blog.recent limit: 3 %}
- {{ article.title }}
{% endfor %}
```
## Properties
### articles
Returns all [articles](/reference/liquid/objects/article/) posted to this blog.
### last_updated
Returns recently updated [articles](/reference/liquid/objects/article/).
### recent
Returns recently published [articles](/reference/liquid/objects/article/).