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