# article

> The article template of a Shoplazza Theme renders a single blog post page with its full content. See the file location and the objects to include.

The `article` template renders the article page, which contains the full content of the article. This template is used for items like individual posts in a blog.

## Location

The `article` template is located in the `templates` directory of the theme:

```text title="Directory"
└── theme
    ├── layout
    ├── templates
    |   ├── 404.liquid
    |   ├── article.liquid
    |   ...
    ...
```

## Content

You should include the following in your section inside the template:

* The [article object](./article#the-article-object)

### The article object

You can access the Liquid [article object](/docs/theme/references/liquid/objects/article) to display the article details.
