27 lines
900 B
HTML
27 lines
900 B
HTML
{% extends 'tb_base.html' %}
|
|
{% block CONTENT %}
|
|
|
|
{% include 'blocks/b_sections_buttons.html' %}
|
|
|
|
{% if page.description or page.title or page.text %}
|
|
<div {% include "block_settings/blocks_settings.html" %}>
|
|
<div class="cut-width">
|
|
<div>
|
|
|
|
{% if page.description %}
|
|
<div class="description_page standart_txt">{{ page.description }}</div>
|
|
{% endif %}
|
|
{% if page.title %}
|
|
<div class="title_page standart_txt">{{ page.title }}</div>
|
|
{% endif %}
|
|
{% if page.text %}
|
|
<div style="padding: 20px 0;">{{ page.text|safe }}</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
{% endblock %} |