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.
38 lines
1.4 KiB
38 lines
1.4 KiB
{% if banner %}
|
|
<div class="banner {% if banner.color %}banner_colored{% endif %} {% if banner.future_date %}banner_countdown{% endif %}"
|
|
data-banner="{{banner.id}}"
|
|
style="
|
|
{% if not request.user_agent.is_mobile %}
|
|
background-image: url({{ banner.image.url }});
|
|
{% endif %}
|
|
{% if banner.stretch_image %}
|
|
background-position: center;
|
|
background-size: cover;
|
|
{% else %}
|
|
background-position: center bottom;
|
|
{% endif %}
|
|
display: none;
|
|
background-color: {{ banner.color|default:'white' }};">
|
|
{# if request.user_agent.is_mobile #}
|
|
<!--<a href="{{ banner.url }}" class="banner__image-wrap">-->
|
|
<!--<img class="banner__image" src="{{ banner.image.url }}" />-->
|
|
<!--</a>-->
|
|
{# else #}
|
|
<div class="banner__content">
|
|
<div class="banner__content-center">
|
|
<div class="banner__text-column">
|
|
<div class="banner__text">{{ banner.text }}</div>
|
|
<a href="{{ banner.url }}" class="banner__link">{{ banner.button_text }}</a>
|
|
</div>
|
|
{% if banner.future_date %}
|
|
<div class="banner__countdown-column">
|
|
<div class="banner__countdown-title">До конца акции осталось</div>
|
|
<countdown date="{{ banner.future_date|date:'Y-m-d H:i:s' }}"></countdown>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{# endif #}
|
|
<a href="#" class="banner__hide">Скрыть баннер</a>
|
|
</div>
|
|
{% endif %}
|
|
|