0.0.41
This commit is contained in:
23
templates/blocks/b_service_2_col.html
Normal file
23
templates/blocks/b_service_2_col.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{% load static %}
|
||||
{% load i18n %}
|
||||
|
||||
<div class="cut-width">
|
||||
<div class="block_service two_cols">
|
||||
{% for service in services %}
|
||||
<div class="service_block_container two_cols">
|
||||
<div class="service_container">
|
||||
{% if service.picture %}
|
||||
<div class="left_part_service">
|
||||
<img class="service_img" src="{{ MEDIA_URL }}{{ service.picture }}">
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="right_part_service two_cols standart_txt {% if not service.picture %}w_100{% endif %}">
|
||||
{{ service.name }}
|
||||
</div>
|
||||
<div class="clear_both"></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user