Collections

Ericson C. Smith · Updated February 19, 2026

Collections are groups of objects. The CMS has several kinds of collections:

  • Blogs - {{blogs}}
  • Products - {{products}}
  • Photos - {{photos}}
  • Videos - {{videos}}
  • Places - {{places}}
  • Testimonials - {{testimonials}}
  • Social media posts - {{socials}}
  • Offers (Landing pages) - {{offers}}

If you have created a page with any of the above types, the corresponding Liquid tag will be available that contains the collection. You can create the HTML to render a list of items in the collection like this:

Notice the liquid tag "blogs" on line 2 us being used in a loop.

Please refer to the standard Liquid documentation for how to use loops, conditional statements and so on.

Here are the tags available for each item in a collection:

  • {{id}} - the ID of the item
  • {{zid}} - a unique long form random id
  • {{title}} - the title of the item
  • {{summary}} - a short summary of the item
  • {{content}} - the main content of the item
  • {{content_format}} (nil (text), "html", "text" or other format)
  • {{permalink}} - The url to this item (eg: "/blog/my-cool-blog-post")
  • {{ip}} - IP address of user who created this item
  • {{likers_count}} - Number of people who like this item
  • {{created_at}} - Date item was created
  • {{updated_at}} - Date item was last updated
  • {{hits_all}} - Number of views item received in its lifetime
  • {{hits_today}} - Number of views item received so far today
  • {{source}} - Implementation defined
  • {{tags}} - A comma separated list of tags (eg: "tag1, tag2, tag3....")
  • {{external_link}} - A link to an external site
  • {{meta1}} - user defined
  • {{meta2}} - user defined
  • {{meta3}} - user defined
  • {{meta4}} - user defined
  • {{meta5}} - user defined
  • {{meta6}} - user defined
  • {{price}} - user defined
  • {{price_info}} - fine print for pricing
  • {{unit_name}} - unit of pricing
  • {{currency}} - Currency code (eg: USD, CDN, INR, EUR)
  • {{lang}} - Language code (eg: "en", "fr", "es")
  • {{src}} - user defined
  • {{src_id}} - user defined
  • {{expires}} - Date item should be expired. Blank if not to be expired
  • {{preferences}} - user defined
  • {{origin_id}} - user defined
  • {{status}} - (0: published, 1: draft, 2: specific date to be used (pubdate), 3: private)
  • {{on}} - user-defined
  • {{attribs}} - user-defined
  • {{author}} - The author object for the user who created this item
  • {{place}} - The geographic location object for a place related to this item
  • {{attachments}} - A list of attachments (videos, photos, files)
  • {{primary_media}} - The primary media item for this post
  • {{custom_fields}} - A key/value list of custom fields in this collection
  • {{custom_fields.cell_phone}}
  • {{parent}} - The parent post of this record

Other internal tags are also available. We will update this list as we add or develop other item tags.