For the complete documentation index, see llms.txt. This page is also available as Markdown.

Override page title and meta tags

If needed, you can manipulate the title and various other parts of the Page meta data from within an Embed module.

{% set overrides = {'title': 'Some title', 'meta_description': 'Updated meta description'} %}
{% do set_page_overrides(overrides) %}

You have access to the following Page options

  • title

  • meta_description

  • meta_keywords

  • noindex

  • nofollow

Override opengraph (og:) tags

You are able to set or override existing opengraph meta tags

{% set overrides = {'title': 'Some title', 'image': 'https://www.example.com/img/upload/share-image.png'} %}
{% do set_opengraph_overrides(overrides) %}

Last updated

Was this helpful?