templates/frontend/template/text.html.twig line 1
{% extends "frontend/base.html.twig" %}
{% block title %}{{ page.title }}{% endblock %}
{% block body %}
{% set content = page.metaDecoded('content') %}
{% if content is not empty %}
<div class="page-content">
<div class="container text-content theme-dark">
{{ content.text|raw|editor_content }}
</div>
</div>
{% endif %}
{% endblock %}