0.0.28
This commit is contained in:
@@ -644,13 +644,53 @@ body,html{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.footer_els_container{
|
.footer_els_container{
|
||||||
width: 100%;
|
width: 73%;
|
||||||
display: flex;
|
display: flex;
|
||||||
padding-top: 70px;
|
padding-top: 70px;
|
||||||
padding-bottom: 60px;
|
padding-bottom: 60px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer_el{
|
||||||
|
width: 44%;
|
||||||
|
margin-right: 50px;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer_name_str{
|
.footer_name_str{
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer_el_childs{
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer_name_str{
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flex_container_footer{
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn_contacts_footer{
|
||||||
|
border-radius: 2px;
|
||||||
|
border: 1px solid #FB6952;
|
||||||
|
padding: 15px 0;
|
||||||
|
color: #FB6952;
|
||||||
|
background: none;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.btn_contacts_footer:hover{
|
||||||
|
border-radius: 2px;
|
||||||
|
border: 1px solid #FB6952;
|
||||||
|
padding: 15px 0;
|
||||||
|
background: #FB6952;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo_footer{
|
||||||
|
height: 35px;
|
||||||
|
}
|
||||||
1
templates/block_settings/blocks_settings.html
Normal file
1
templates/block_settings/blocks_settings.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{% load static %}
|
||||||
@@ -1,27 +1,37 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
|
{% load admin_interface_tags %}
|
||||||
<div class="block_footer">
|
<div class="block_footer">
|
||||||
<div class="cut-width">
|
<div class="cut-width">
|
||||||
<div class="footer_els_container">
|
<div class="flex_container_footer">
|
||||||
{% for service in services %}
|
<div class="footer_els_container">
|
||||||
<div class="footer_el">
|
{% for service in services %}
|
||||||
<div class="footer_name_str medium_txt">
|
<div class="footer_el">
|
||||||
{{ service.name }}
|
<div class="footer_name_str medium_txt">
|
||||||
|
{{ service.name }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% if service.rel_children_for_service.all %}
|
||||||
|
<div class="footer_el_childs">
|
||||||
|
{% for sub_serv in service.rel_children_for_service.all %}
|
||||||
|
<div class="footer_name_str standart_semi_bold_txt">
|
||||||
|
{{ service.name }}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% if service.rel_children_for_service.all %}
|
{% endfor %}
|
||||||
<div class="footer_el_childs">
|
</div>
|
||||||
{% for sub_serv in service.rel_children_for_service.all %}
|
<div class="right_part_footer">
|
||||||
<div class="footer_el_children_name_str">
|
<div class="logo_container_footer">
|
||||||
{{ service.name }}
|
<img src="{{ logo }}" class="logo_footer">
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
<div class="standart_txt">+1 234 5678901</div>
|
||||||
</div>
|
<div class="standart_txt">company@aerbim.com</div>
|
||||||
{% endif %}
|
<button class="btn_contacts_footer">Контакты</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -12,4 +12,3 @@
|
|||||||
{% include 'blocks/b_3d_s_d.html' with block=cur_section.plugin_presentation.all.0 %}
|
{% include 'blocks/b_3d_s_d.html' with block=cur_section.plugin_presentation.all.0 %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% include 'blocks/b_faq.html' %}
|
{% include 'blocks/b_faq.html' %}
|
||||||
{% include 'blocks/b_footer.html' %}
|
|
||||||
@@ -3,4 +3,5 @@
|
|||||||
|
|
||||||
{% include 'blocks/dynamic/b_sections_buttons.html' %}
|
{% include 'blocks/dynamic/b_sections_buttons.html' %}
|
||||||
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@@ -20,5 +20,6 @@
|
|||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
{% include 'blocks/b_footer.html' %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Reference in New Issue
Block a user