Welcome to {{ settings.name }}!

This is a sample template demonstrating basic Jinja2 features available in your CMS.

Variables

Organization: {{ settings.name }}

ID: {{ settings.id }}

Conditionals

{% if settings.show_chatbox %}

✅ Chatbox is enabled

{% else %}

❌ Chatbox is disabled

{% endif %}

Domains

{% if settings.domains %} {% else %}

No domains configured

{% endif %}

Template Features

Use {% raw %}{% extends "template_name" %}{% endraw %} to inherit from other templates.

Use {% raw %}{% include "template_name" %}{% endraw %} to include other templates.

{# This is a Jinja2 comment - it won't be visible in the output #}

Edit this template to create your own content!