12 lines
320 B
Twig
12 lines
320 B
Twig
|
{% extends 'global/master.twig' %}
|
||
|
|
||
|
{% block title %}{% if page.title %}{{ page.title }}{% else %}Not found!{% endif %}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="content standalone bbcode">
|
||
|
<div>
|
||
|
{{ include(template_from_string(page.content|raw)) }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|