14 lines
525 B
HTML
14 lines
525 B
HTML
{% extends 'tb_base.html' %}
|
|
{% block CONTENT %}
|
|
|
|
<div class="container_sections_buttons">
|
|
<div class="cut-width container_content_sections_buttons">
|
|
{% for section in sections %}
|
|
<a href="{% url 'section_page' section.url %}" class="section_btn close standart_txt" data-url="{% url 'section_page' section.url %}">
|
|
<div class="txt_section standart_txt">{{ section.name }}</div>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |