--- title: The pages global Liquid object is now iterable - Shopify developer changelog description: Shopify’s developer changelog documents all changes to Shopify’s platform. Find the latest news and learn about new platform opportunities. source_url: html: https://shopify.dev/changelog/the-pages-global-liquid-object-is-now-iterable md: https://shopify.dev/changelog/the-pages-global-liquid-object-is-now-iterable.md --- [Back to Developer changelog](https://shopify.dev/changelog) May 21, 2021 Tags: * Themes # The pages global Liquid object is now iterable You can now iterate through [the global Liquid `pages` object](https://shopify.dev/docs/themes/liquid/reference/objects#pages), instead of only being able to directly reference known pages through their handle. This allows you to access a paginated pages listing of up to 50 items at a time and produce HTML that is conditional to the page data that is available. You can return properties for a specific page using `{{ pages.pagename.propertyname }}`: ```liquid

{{ pages.about.title }}

{{ pages.about.author }} says...

{{ pages.about.content }}
``` You can also interate through up to 50 pages at a time with pagination: ```liquid ```