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.
 
 
 
 

37 lines
2.0 KiB

{% load static %}
<footer class="footer">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-3 col-md-12">
<div class="footer__about">
&copy; Компания «Русские Программы» 2015–{% now 'Y' %}
</div>
</div>
<div class="col-md col-md-2 col-5">
<ul class="footer__menu">
<li><a href="{% url 'products:product_list' %}">Каталог</a></li>
<li><a href="{% url 'news:blog' %}">Новости</a></li>
<li><a href="{% url 'cart:discounts' %}">Акции</a></li>
<li><a href="{% url 'django.contrib.flatpages.views.flatpage' url='about-us/' %}">О компании</a></li>
</ul>
</div>
<div class="col-lg-4 col-md-6 col-7">
<div class="footer__contact">
<div class="footer__address">г. Москва ул. Пушкина, д. 32</div>
<div class="footer__phone"><a href="tel:84954369821">8 (495) 436-98-21</a>, <a
href="tel:84953724873">8 (495) 372-48-73</a></div>
<div class="footer__email"><a href="mailto:info@companyname.ru">info@companyname.ru</a></div>
</div>
</div>
<div class="col-lg col-md-4">
<div class="footer__title">Способы оплаты</div>
<div class="footer__pay">
<a href="#" class="footer__pay-item"><img src="{% static 'img/pay/visa.svg' %}" alt="Visa"></a>
<a href="#" class="footer__pay-item"><img src="{% static 'img/pay/mastercard.svg' %}" alt="Mastercard"></a>
<a href="#" class="footer__pay-item"><img src="{% static 'img/pay/maestro.svg' %}" alt="Maestro"></a>
</div>
</div>
</div>
</div>
</footer>