# Article
The `article` object represents a blog article, including its content, author, comments, and SEO information.
## Usage Example
**`templates/blog.liquid`**
```liquid
{%- comment -%} Article summary in a blog listing {%- endcomment -%}
{% for article in blog.articles %}
-
{% if article.header_image %}
{% endif %}
{{ article.summary }}
By {{ article.author }} on {{ article.created_at | date: '%Y-%m-%d' }}
{% if article.comments_are_enabled %} | {{ article.comments_count }} comments{% endif %}
{% endfor %}
```
**`templates/article.liquid`**
```liquid
{%- comment -%} Full article view {%- endcomment -%}
{{ article.title }}
{% if article.header_image %}
{% endif %}
{{ article.content }}
```
## Properties
### account_owner
Returns true if the author is the owner of the store.
### author
Returns the full name of the author.
### blog
Returns the associated [blog](/reference/liquid/objects/blog/).
### comments
Returns the published [comments](/reference/liquid/objects/comment/) of this article. Returns an empty array if comments are disabled.
### comments_are_enabled
Returns true if commenting is enabled for this article.
### comments_count
Returns the number of published [comments](/reference/liquid/objects/comment/) to this article.
### comments_require_account
Returns true if commenting requires a customer account.
### comments_require_approval
Returns true if commenting is moderated for this article.
### content
Returns the content of this article.
### created_at
Returns the timestamp when the article was published.
### handle
Returns a handle for this article.
### header_image
Returns the associated header image URL for this article.
### id
Returns the identifier for this article.
### is_published
Returns true if this post is published. In design mode, unpublished articles are visible.
### seo_description
Returns description for search engines.
### seo_keywords
Returns keywords for search engines.
### seo_title
Returns title for search engines.
### summary
Returns the summary (max. 140 characters) for this article.
### title
Returns the title.
### updated_at
Returns the timestamp when the article was updated or modified.
### user
Returns information about the article's author.