You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
696 B
22 lines
696 B
{% load static %}
|
|
<div
|
|
class="main"
|
|
{% if config.MAIN_PAGE_TOP_IMAGE %}
|
|
style="background-image: url({{ config.MAIN_PAGE_TOP_IMAGE.url }});"
|
|
{% else %}
|
|
style="background-image: url({% static 'img/bg-1.jpg' %});"
|
|
{% endif %}
|
|
>
|
|
<div class="main__center center">
|
|
<div class="main__title">Первая онлайн-школа креативного мышления для детей! 5+</div>
|
|
<a
|
|
{% if not user.is_authenticated %}
|
|
data-popup=".js-popup-auth"
|
|
{% else %}
|
|
data-popup=".js-popup-buy"
|
|
{% endif %}
|
|
class="main__btn btn"
|
|
href="#"
|
|
>КУПИТЬ ДОСТУП ОТ {{ min_school_price }}р. в мес.</a>
|
|
</div>
|
|
</div>
|
|
|