The `page` template renders the store's [pages](https://help.shopify.com/manual/online-store/themes/theme-structure/pages), like **About us** or **Contact us**.

> Tip:
> Refer to the [page template](https://github.com/Shopify/dawn/blob/main/templates/page.json) and its [main section](https://github.com/Shopify/dawn/blob/main/sections/main-page.liquid) in Dawn for an example implementation.

<figure class="figure">
  <img src="/assets/themes/templates/page.png" style="width: 100%; max-width: 550px;" alt="An example of the page template in Dawn">
</figure>

## Location

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

```text
└── theme
    ├── layout
    ├── templates
    |   ...
    |   ├── page.json
    |   ...
    ...
```

## Content

You can include the following in your page template or a section inside of the template:

- [The page object](#the-page-object)

### The page object

You can access the Liquid [`page` object](/docs/api/liquid/objects/page) to display the page details.

> Tip:
> If you're using a JSON template, then any HTML or Liquid code needs to be included in a [section](/docs/storefronts/themes/architecture/sections) that's referenced by the template.