---
title: 'Liquid objects: pages'
description: 'All of the [pages](/docs/api/liquid/objects/page) on a store.'
api_name: liquid
source_url:
html: 'https://shopify.dev/docs/api/liquid/objects/pages'
md: 'https://shopify.dev/docs/api/liquid/objects/pages.md'
---
# pages
All of the [pages](https://shopify.dev/docs/api/liquid/objects/page) on a store.
### Directly accessible in
* Global
You can access a specific page through the `pages` object using the page's [handle](https://shopify.dev/docs/api/liquid/basics#handles).
```liquid
{{ pages.contact.title }}
{{ pages['about-us'].title }}
```
##### Code
```
{{ pages.contact.title }}
{{ pages['about-us'].title }}
```
## Output
```html
Contact
About us
```
### Paginate the `pages` object
You can [paginate](https://shopify.dev/docs/api/liquid/tags/paginate) the `pages` object, allowing you to iterate over up to 50 pages at a time.
```liquid
{% paginate pages by 2 -%}
{% for page in pages -%}
{{ page.title | link_to: page.url }}
{%- endfor %}
{{- paginate | default_pagination }}
{%- endpaginate %}
```
##### Code
```
{% paginate pages by 2 -%}
{% for page in pages -%}
{{ page.title | link_to: page.url }}
{%- endfor %}
{{- paginate | default_pagination }}
{%- endpaginate %}
```
## Output
```html
About us
Contact
1 2 Next »
```