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.
90 lines
4.1 KiB
90 lines
4.1 KiB
{% extends "templates/lilcity/layer.html" %} {% load static %}
|
|
|
|
{% block title %}School LIL.CITY{% endblock title %}
|
|
|
|
{% block layer_head %}
|
|
<style>
|
|
|
|
</style>
|
|
{% endblock layer_head %}
|
|
|
|
{% block layer_body %}
|
|
<div class="main main_default" style="
|
|
min-height: auto;
|
|
padding-top: 20px;
|
|
padding-bottom: 0;
|
|
margin-top: 0;">
|
|
<div class="main__center center">
|
|
<a href="{% url 'index' %}?utm_source=posadochnaya_stranica&utm_medium=main_page&utm_campaign=main_page">
|
|
<div style="
|
|
height: 90px;
|
|
background: url({% static 'img/school-lil-city.svg' %}) no-repeat center 0;
|
|
"></div>
|
|
</a>
|
|
<div class="main__title">
|
|
<span class="main__bold">Lil School</span> — первая образовательная онлайн-платформа креативного мышления для детей! 5+
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="section">
|
|
<div class="section__center center">
|
|
<div style="display: flex; flex-direction: column;">
|
|
<a class="btn" style="margin: 10px 0;"
|
|
href="{% url 'index' %}?utm_source=posadochnaya_stranica&utm_medium=probniy_urok&utm_campaign=probniy_urok">
|
|
Бесплатный пробный урок</a>
|
|
<a class="btn" style="margin: 10px 0;"
|
|
href="{% url 'school:school' %}?utm_source=posadochnaya_stranica&utm_medium=online_school&utm_campaign=online_school">
|
|
Онлайн школа</a>
|
|
<!--<a class="btn" style="margin: 10px 0;"-->
|
|
<!--href="{% url 'school:drawing-camp' %}?utm_source=posadochnaya_stranica&utm_medium=camp&utm_campaign=camp">-->
|
|
<!--Рисовальный лагерь</a>-->
|
|
<!--<a class="btn" style="margin: 10px 0;"-->
|
|
<!--href="{% url 'school:free-lessons' %}?utm_source=posadochnaya_stranica&utm_medium=Free&utm_campaign=Free">-->
|
|
<!--Месяц открытых дверей</a>-->
|
|
<a class="btn" style="margin: 10px 0;"
|
|
href="{% url 'courses' %}?utm_source=posadochnaya_stranica&utm_medium=Videokursy&utm_campaign=Videokursy">
|
|
Видеокурсы</a>
|
|
<a class="btn" style="margin: 10px 0;"
|
|
href="{% url 'gift-certificates' %}?utm_source=posadochnaya_stranica&utm_medium=Sertifikaty&utm_campaign=Sertifikaty">
|
|
Подарочные сертификаты</a>
|
|
<a class="btn" style="margin: 10px 0;"
|
|
href="{% url 'course' 'metodicheskoe-posobie-dlya-razvitiya-kreativnogo-mishleniya-detey' %}?utm_source=posadochnaya_stranica&utm_medium=Metodichka&utm_campaign=Metodichka">
|
|
Методическое пособие</a>
|
|
<a class="btn" style="margin: 10px 0;"
|
|
href="{% url 'course' 'kak-stat-illiustratorom' %}?utm_source=posadochnaya_stranica&utm_medium=Kurs_sashaKru&utm_campaign=Kurs_sashaKru">
|
|
Курс иллюстрации от SashaKru
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<div class="section__center center">
|
|
<div class="title title_center">Подписывайтесь на наши социальные сети</div>
|
|
</div>
|
|
</div>
|
|
<div style="font-size: 2.4em; display: flex; margin-bottom: 30px;">
|
|
<div style="margin: 0 auto;">
|
|
<a target="_blank" href="{{ config.SERVICE_INSTAGRAM_URL }}" style="margin: 0 20px; display: inline-block;">
|
|
<svg class="icon icon-instagram">
|
|
<use xlink:href="{% static 'img/sprite.svg' %}#icon-instagram"></use>
|
|
</svg>
|
|
</a>
|
|
<a target="_blank" href="{{ config.SERVICE_TWITTER_URL }}" style="margin: 0 20px; display: inline-block;">
|
|
<svg class="icon icon-twitter">
|
|
<use xlink:href="{% static 'img/sprite.svg' %}#icon-twitter"></use>
|
|
</svg>
|
|
</a>
|
|
<a target="_blank" href="{{ config.SERVICE_FB_URL }}" style="margin: 0 20px; display: inline-block;">
|
|
<svg class="icon icon-fb">
|
|
<use xlink:href="{% static 'img/sprite.svg' %}#icon-fb"></use>
|
|
</svg>
|
|
</a>
|
|
<a target="_blank" href="{{ config.SERVICE_YOUTUBE_URL }}" style="margin: 0 20px; display: inline-block;">
|
|
<svg class="icon icon-youtube">
|
|
<use xlink:href="{% static 'img/sprite.svg' %}#icon-youtube"></use>
|
|
</svg>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endblock layer_body %}
|
|
|