2018-09-20 22:56:14 +00:00
|
|
|
{% extends 'info/master.twig' %}
|
2018-10-22 19:53:21 +00:00
|
|
|
{% from 'macros.twig' import container_title %}
|
2018-09-20 22:56:14 +00:00
|
|
|
|
|
|
|
{% set title = document.title %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-12-25 01:55:09 +00:00
|
|
|
<div class="container">
|
2018-10-22 19:53:21 +00:00
|
|
|
{{ container_title(document.title) }}
|
|
|
|
|
2018-11-01 21:35:10 +00:00
|
|
|
<div class="container__content markdown">
|
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 %}
|