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.
37 lines
1.5 KiB
37 lines
1.5 KiB
{% load static %}
|
|
<div
|
|
class="main main_default"
|
|
{% 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">
|
|
<span class="main__bold">Lil School</span> — первая образовательная онлайн-платформа креативного мышления для детей
|
|
</div>
|
|
<div class="main__subtitle">
|
|
Присоединяйтесь в Рисовальный лагерь
|
|
</div>
|
|
<div class="main__actions">
|
|
<a
|
|
{% if not is_purchased_future %}
|
|
{% if not user.is_authenticated %}
|
|
data-popup=".js-popup-auth"
|
|
{% else %}
|
|
data-popup=".js-popup-buy"
|
|
{% endif %}
|
|
{% endif %}
|
|
class="main__btn btn"
|
|
href="#"
|
|
>
|
|
{% if not is_purchased and not is_purchased_future %}Получить доступ{% endif %}
|
|
{% if is_purchased_future and not is_purchased %}ваша подписка начинается {{school_purchased_future.date_start}}{% endif %}
|
|
{% if is_purchased %}ваша подписка истекает {{ subscription_ends_humanize }}<br/>перейти к оплате{% endif %}
|
|
</a>
|
|
|
|
<a class="main__btn btn btn_white" href="{% url 'school:summer-school' %}">О лагере</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|