article

The article object represents a single blog article. It is available on the article template, and when looping over blog.articles.

The article object has the following attributes:

article.title

Returns the title of the article.

{{ article.title }}
			

article.url

Returns the relative URL of the article.

article.author

Returns the full name of the article's author.

article.published_at

Returns the date and time when the article was published. Use the date filter to format the timestamp.

{{ article.published_at | date: '%Y-%m-%d' }}
			
2026-07-21
			

article.created_at

Returns the date and time when the article was created.

article.updated_at

Returns the date and time when the article was last updated.

article.image

Returns the featured image of the article as an image object. Access the image source with article.image.src.

{% if article.image %}
	<img src="{{ article.image.src }}" alt="{{ article.title }}">
{% endif %}
			

article.image_url

Returns the URL of the article's featured image.

article.excerpt

Returns the excerpt of the article, if one has been set.

article.content

Returns the full content of the article as HTML.

article.body_html

Returns the body of the article as HTML. This is typically used to render the article on the article template.

{{ article.body_html }}
			

article.description

Returns the description of the article. This is often used as a short summary when listing articles.

{{ article.description | strip_html | truncatewords: 30 }}
			

article.comments_count

Returns the number of published comments on the article.

icon-accounticon-add-newicon-add-storeicon-appicon-appleicon-archiveicon-arrowdownicon-ascicon-bookicon-cancelicon-cart-addonicon-checkouticon-cherryicon-collectionicon-comfirmicon-confirmicon-couponicon-creditsicon-currencyicon-dashboardicon-discounticon-disintegrateicon-domainicon-dscicon-duplicateicon-editicon-emailicon-exclamation-triangleicon-exporticon-eyeicon-eye-slashicon-fullscreenicon-fullscreen-closeicon-generalicon-gifticon-gridicon-hddicon-helpicon-importicon-infoicon-integrationicon-invoiceicon-likeicon-listicon-locationicon-logouticon-new-tabicon-not-secureicon-optionicon-ordericon-outline-arrowdownicon-pageicon-paymenticon-plusicon-posicon-pricingicon-printericon-producticon-product-sumicon-product-sum-xicon-redirecticon-reporticon-reseticon-searchicon-secureicon-settingicon-shippingicon-staricon-storeicon-switch-storeicon-tagicon-taxesicon-templateicon-themeicon-tickicon-trashicon-unarchiveicon-uploadicon-user-tagicon-usersicon-weighticon-wholesale