Websites v4 docs v5.2.4
    Preparing search index...

    Metadata

    A page's meta title and description can be configured in the page's pageConfiguration (under Pages -> Page Settings -> Metadata in the admin sidebar).

    For dynamic pages (e.g. Property, PropertyList), hardcoded strings are typically insufficient. To support dynamic values, metadata fields accept Liquid templating. See V4 Liquid API Reference for usage of custom liquid rendering.

    Each page is provided with a context object based on its available data:

    • All pages have access to the agency object, which follows the structure of SerializableAgency. For example: {{ agency.name }}.
    • Entity-specific pages (e.g. Property, Branch, Staff) can access their main data resource, {{ property.<field> }}, and again, follows their serializable interface structure, e.g. SerializableProperty.
    • PropertyList pages have access to the current search object. If the user is browsing by location, the location data is accessible via {{ search.place.<field> }}.
    • Article and area guide pages only have access to the agency context as each configuration represents its own article / area guide.
    • Staff show pages have the staff member exposed in context as staffMember to differentiate between singular and plural.

    See further documentation on Serializers and Search for full field references.