--- title: "Liquid objects: page" description: A [page](https://help.shopify.com/manual/online-store/themes/theme-structure/pages) on a store. api_name: liquid source_url: html: https://shopify.dev/docs/api/liquid/objects/page md: https://shopify.dev/docs/api/liquid/objects/page.md --- # page A [page](https://help.shopify.com/manual/online-store/themes/theme-structure/pages) on a store. ## Properties * * author [string](https://shopify.dev/docs/api/liquid/basics#string) * The author of the page. * content [string](https://shopify.dev/docs/api/liquid/basics#string) * The content of the page. * handle [string](https://shopify.dev/docs/api/liquid/basics#string) * The [handle](https://shopify.dev/docs/api/liquid/basics#handles) of the page. * id [number](https://shopify.dev/docs/api/liquid/basics#number) * The ID of the page. * metafields * The [metafields](https://shopify.dev/docs/api/liquid/objects/metafield) applied to the page. Tip To learn about how to create metafields, refer to [Create and manage metafields](https://shopify.dev/apps/metafields/manage) or visit the [Shopify Help Center](https://help.shopify.com/manual/metafields). * published\_​at [string](https://shopify.dev/docs/api/liquid/basics#string) * A timestamp for when the page was published. Tip Use the [`date` filter](https://shopify.dev/docs/api/liquid/filters/date) to format the timestamp. * template\_​suffix [string](https://shopify.dev/docs/api/liquid/basics#string) * The name of the [custom template](https://shopify.dev/themes/architecture/templates#alternate-templates) assigned to the page. The name doesn't include the `page.` prefix, or the file extension (`.json` or `.liquid`). If a custom template isn't assigned to the page, then `nil` is returned. * title [string](https://shopify.dev/docs/api/liquid/basics#string) * The title of the page. * url [string](https://shopify.dev/docs/api/liquid/basics#string) * The relative URL of the page. ```json { "author": null, "content": "

Polina's Potent Potions was started by Polina in 1654.

\n

We use all-natural locally sourced ingredients for our potions.

", "handle": "about-us", "id": 83536642113, "metafields": {}, "published_at": "2022-05-04 17:47:03 -0400", "template_suffix": "", "title": "About us", "url": {} } ``` ##### Example ``` { "author": null, "content": "

Polina's Potent Potions was started by Polina in 1654.

\n

We use all-natural locally sourced ingredients for our potions.

", "handle": "about-us", "id": 83536642113, "metafields": {}, "published_at": "2022-05-04 17:47:03 -0400", "template_suffix": "", "title": "About us", "url": {} } ``` ## Templates using page [![](https://shopify.dev/images/icons/32/themes.png)![](https://shopify.dev/images/icons/32/themes-dark.png)](https://shopify.dev/themes/architecture/templates/page) [Theme architecturepage template](https://shopify.dev/themes/architecture/templates/page)