2018-09-20 22:56:14 +00:00
|
|
|
{% extends 'info/master.twig' %}
|
|
|
|
|
|
|
|
{% set title = document.title %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="container__title">
|
|
|
|
{{ document.title }}
|
|
|
|
</div>
|
|
|
|
<div class="container__content">
|
2018-09-21 08:56:52 +00:00
|
|
|
{{ document.content|parse_text(constant('MSZ_PARSER_MARKDOWN'))|raw }}
|
2018-09-20 22:56:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|