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.
44 lines
1.7 KiB
44 lines
1.7 KiB
{% extends "templates/lilcity/layer.html" %}
|
|
|
|
{% load static %}
|
|
{% load setting from settings %}
|
|
{% load compress %}
|
|
|
|
{% block layer_head %}
|
|
{% block head %}{% endblock head %}
|
|
{% endblock layer_head %}
|
|
|
|
{% block layer_body %}
|
|
{% include "templates/blocks/social.html" %}
|
|
<div class="outer js-outer">
|
|
{% include "templates/blocks/header.html" %}
|
|
<div id="lilcity-vue-app" class="container">
|
|
{% if banners %}
|
|
{% include "templates/blocks/banners.html" %}
|
|
{% endif %}
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
{% include "templates/blocks/footer.html" %}
|
|
{% include "templates/blocks/popup_auth.html" %}
|
|
{% if is_gift_certificate_url %}
|
|
{% include "templates/blocks/popup_gift_certificate.html" %}
|
|
{% endif %}
|
|
{% include "templates/blocks/popup_enter_gift_code.html" %}
|
|
{% include "templates/blocks/popup_course_lock.html" %}
|
|
{% include "templates/blocks/popup_subscribe.html" %}
|
|
{% include "templates/blocks/popup_capture_email.html" %}
|
|
{% include "templates/blocks/popup_bonuses_came.html" %}
|
|
</div>
|
|
{% block foot %}{% endblock foot %}
|
|
{% include 'templates/blocks/lil_store_js.html' %}
|
|
{% block pre_app_js %}{% endblock pre_app_js %}
|
|
<script type="text/javascript" src="{% static "app.js" %}"></script>
|
|
<script src="https://js.pusher.com/4.1/pusher.min.js"></script>
|
|
<script>
|
|
LIL_SERVER_TIME = "{% now 'U' %}";
|
|
LIL_SERVER_TIME_DIFF = Math.floor((new Date().getTime()) / 1000) - parseInt(LIL_SERVER_TIME);
|
|
USER_ID = "{{ request.user.id }}";
|
|
COURSE_ID = "{{ course.id }}";
|
|
</script>
|
|
{% block foot_js %}{% endblock foot_js %}
|
|
{% endblock layer_body %}
|
|
|