25 lines
1.3 KiB
HTML
25 lines
1.3 KiB
HTML
{% load static %}
|
|
<div class="w_one_present{% if forloop.counter|divisibleby:2 %} even{% else %} odd{% endif %}">
|
|
<div class="txt_part_w_one_present">
|
|
{% if widget.name %}
|
|
<div class="title_w_one_present standart_txt">
|
|
видеообзор функционала плагина 3D Security Designer
|
|
</div>
|
|
{% endif %}
|
|
{% if widget.description %}
|
|
<div class="splinner_w_one_present"></div>
|
|
<div class="description_w_one_present standart_txt">
|
|
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if widget.video_url or widget.picture %}
|
|
<div class="img_container_part_w_one_present">
|
|
{% if widget.picture %}
|
|
<img class="img_part_w_one_present" src="{{ MEDIA_URL }}{{ widget.picture }}" alt="">
|
|
{% elif widget.video_url %}
|
|
<div>{{ widget.video_url|safe }}</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div> |