Themes built on the Twig templating engine are now deprecated and require migration to Vitrin to ensure continued support and compatibility with Zid.
/pages/{slug}pages| Variable | Type |
|---|---|
page | Page |
store | Store |
session | Session |
| Property | Description |
|---|---|
page.title | Page title |
page.content | Page content (HTML) |
{% extends "layout.jinja" %}
{% block main_content %}
<div class="page">
<h1>{{ page.title }}</h1>
<div class="content">
{{ page.content | safe }}
</div>
</div>
{% endblock %}