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.
75 lines
3.4 KiB
75 lines
3.4 KiB
{% load static %} {% load thumbnail %} {% load active_link_tags %} {% load category_menu_items from lilcity_category %}
|
|
<header class="header header_bg js-header">
|
|
<div class="header__center center">
|
|
<div class="header__container">
|
|
<button class="header__menu js-header-menu">
|
|
<svg class="icon icon-menu">
|
|
<use xlink:href={% static "img/sprite.svg" %}#icon-menu></use>
|
|
</svg>
|
|
</button>
|
|
<a class="header__logo logo" href="/"></a>
|
|
<div class="header__wrap js-header-wrap">
|
|
<div class="header__top">
|
|
<button class="header__close js-header-close">
|
|
<svg class="icon icon-close">
|
|
<use xlink:href={% static "img/sprite.svg" %}#icon-close></use>
|
|
</svg>
|
|
</button>
|
|
<form class="header__search search js-search" action="/search/">
|
|
<input name="q" class="search__input js-search-input" type="text">
|
|
<button class="search__btn js-search-btn" type="submit">
|
|
<svg class="icon icon-search">
|
|
<use xlink:href={% static "img/sprite.svg" %}#icon-search></use>
|
|
</svg>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
<nav class="header__nav">
|
|
<div class="header__group mobile-show">
|
|
<a class="header__section {% active_link 'index' %}" href="{% url 'index' %}">
|
|
ГЛАВНАЯ
|
|
</a>
|
|
</div>
|
|
<div class="header__group">
|
|
<a class="header__section {% active_link 'school:school' %}" href="{% url 'school:school' %}">
|
|
ОНЛАЙН-ШКОЛА {% if online or livelesson.is_online %}
|
|
<div class="header__dot"></div>
|
|
{% endif %}
|
|
</a>
|
|
</div>
|
|
|
|
<!--<div class="header__group">-->
|
|
<!--<a class="header__section {% active_link 'school:drawing-camp' %}" href="{% url 'school:drawing-camp' %}">-->
|
|
<!--РИСОВАЛЬНЫЙ ЛАГЕРЬ {% if online or livelesson.is_online %}-->
|
|
<!--<div class="header__dot"></div>-->
|
|
<!--{% endif %}-->
|
|
<!--</a>-->
|
|
<!--</div>-->
|
|
<!--<div class="header__group">-->
|
|
<!--<a class="header__section {% active_link 'school:free-lessons' %}" href="{% url 'school:free-lessons' %}">-->
|
|
<!--БЕСПЛАТНЫЕ УРОКИ-->
|
|
<!--</a>-->
|
|
<!--</div>-->
|
|
<div class="header__group">
|
|
<a class="header__section header__section_sub js-header-section {% active_link 'courses' %}" href="{% url 'courses' %}">ВИДЕО-КУРСЫ</a>
|
|
<div class="header__list js-header-list">
|
|
{% category_menu_items category %}
|
|
</div>
|
|
</div>
|
|
<div class="header__group">
|
|
<a class="header__section {% active_link 'packages' %}" href="{% url 'packages' %}">
|
|
ЦЕНЫ
|
|
</a>
|
|
</div>
|
|
<div class="header__group">
|
|
<a class="header__section" href="https://blog.lil.school">БЛОГ</a>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
{% include 'templates/blocks/user_menu.html' %}
|
|
</div>
|
|
</div>
|
|
{% if request.user.is_authenticated %} {% if not request.user.is_email_proved and not request.user.fb_id %}
|
|
<div class="message message_error">Необходимо подтвердить электронную почту</div>
|
|
{% endif %} {% endif %}
|
|
</header>
|
|
|