# articles

> The articles Liquid object, which holds every article across the blogs of a Shoplazza store and lets a theme access one article by its handle.

All of the articles are across the blogs in the store.

You can use `articles` to access an article by its [handle](../basics/handles#object-handles).

```liquid title="Code"
{% assign article = articles['why-are-strong-glutes-important-how-to-train-for-solid-glutes'] %}

{{ article.title | link_to: article.url }}
```

```html title="Output"
<a href="/blog/why-are-strong-glutes-important-how-to-train-for-solid-glutes" title="">WHY ARE STRONG GLUTES IMPORTANT? HOW TO TRAIN FOR SOLID GLUTES?</a>
```
