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.
52 lines
3.0 KiB
52 lines
3.0 KiB
{% set current_path = template_path ~ '/modules/footer' %}
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="footer-top">
|
|
<div class="footer-content__wrap">
|
|
<div class="footer-content">
|
|
<a href="/" class="logo">
|
|
<img src="{{ current_path }}/assets/img/logo-green.svg" alt="">
|
|
<span>сosmopet</span>
|
|
</a>
|
|
<p class="footer-content__address">
|
|
{{adres}}
|
|
</p>
|
|
<ul>
|
|
{% for item in email_list %}
|
|
<li>
|
|
<p>{{item.name}}</p>
|
|
<a href="mailto:{{item.email}}">{{item.email}}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="footer-top__link">
|
|
<a href="#" class="link-black">{{ function('pll_e', 'Чат бот с ветеринаром') }}</a>
|
|
<a href="#" class="link-white">{{ function('pll_e', 'Калькулятор рациона') }}</a>
|
|
</div>
|
|
</div>
|
|
<form class="footer-contact form-process">
|
|
<h3 class="footer-contact__title">{{ function('pll_e', 'Форма обратной связи') }}</h3>
|
|
<input type="text" placeholder="{{ function('pll_e', 'Ваше имя') }}" class="form-inp">
|
|
<input type="email" placeholder="{{ function('pll_e', 'Эл.почта') }}" class="form-inp">
|
|
<textarea class="form-textarea" name="" placeholder="{{ function('pll_e', 'Текст обращения') }}" id=""></textarea>
|
|
<button class="footer-contact__submit" type="submit">{{ function('pll_e', 'Отправить') }}</button>
|
|
</form>
|
|
</div>
|
|
<div class="footer-bottom">
|
|
<ul class="footer-network">
|
|
{% for item in social %}
|
|
<li>
|
|
<a href="{{item.link}}" target="_blank">
|
|
<img src="{{item.img}}">
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% for item in links %}
|
|
<a href="{{item.link}}">{{item.name}}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
<!-- Footer end --> |