-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
154 lines (151 loc) · 9.5 KB
/
Copy pathheader.php
File metadata and controls
154 lines (151 loc) · 9.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package cwrap
*/
?>
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="<?php bloginfo("template_directory"); ?>/assets/img/cwrap-logo.png" type="image/png">
<title><?php the_title(); ?></title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="<?php bloginfo("template_directory"); ?>/assets/slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="<?php bloginfo("template_directory"); ?>/assets/slick/slick-theme.css"/>
<link rel="stylesheet" type="text/css" href="https://mreq.github.io/slick-lightbox/dist/slick-lightbox.css"/>
<link rel="stylesheet" href="<?php bloginfo("template_directory"); ?>/style.css">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="container">
<div class="row top-head">
<div class="top-logo">
<a href="/" class="top-head__logo">
<img src="<?php bloginfo("template_directory"); ?>/assets/img/cwrap-logo.png" alt="" >
<span class="top-head__logotext">КАЛУЖСКИЙ ЗАВОД<br> УГЛЕРОДНЫХ ТКАНЕЙ</span>
</a>
</div>
<div class="top-head__delivery">
Оптовые поставки<br> <b>по всей России</b>
</div>
<div class="top-head__address">
<a href="#" data-toggle="modal" data-target="#mapModal"><b>Склад в Москве:</b> <span id="address-text"><?php the_field('stock_moscow', 'option'); ?></span><span id="address-map">Смотреть на карте</span><br><b>График работы:</b> <?php the_field('work_hours', 'option'); ?></a>
</div>
<div class="top-head__social">
<a href="<?php the_field('whatsapp_link', 'option'); ?>" target="_blank"><img src="<?php bloginfo("template_directory"); ?>/assets/img/whatsapp.png"></a>
<a href="<?php the_field('viber_link', 'option'); ?>" target="_blank"><img src="<?php bloginfo("template_directory"); ?>/assets/img/viber.png"></a>
<a href="<?php the_field('telegram_link', 'option'); ?>" target="_blank"><img src="<?php bloginfo("template_directory"); ?>/assets/img/telegram.png"></a>
<a href="<?php the_field('skype_link', 'option'); ?>" target="_blank"><img src="<?php bloginfo("template_directory"); ?>/assets/img/skype.png"></a>
</div>
<div class="top-head__contacts">
<a href="tel:+74993488252" class="top-head__phone"><img src="<?php bloginfo("template_directory"); ?>/assets/img/phone.png"><?php the_field('cwrap_phone', 'option'); ?></a>
<a href="mailto:info@kzut.ru" target="_blank">
<p class="top-head__email"><img src="<?php bloginfo("template_directory"); ?>/assets/img/envelope.png"><?php the_field('e-mail', 'option'); ?></p>
</a>
</div>
</div>
</div>
<div class="container-fluid promo text-center">
<?php
wp_nav_menu( array(
'theme_location' => 'menu-1',
'menu' => '',
'container' => 'nav',
'container_class' => 'top-menu',
'container_id' => '',
'menu_class' => 'top-menu',
'menu_id' => 'top-menu',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'depth' => 0,
'walker' => '',
) );
?>
<div class="burger-mobile">
<a href="/" class="footer__logo">
<img src="<?php bloginfo("template_directory"); ?>/assets/img/footer-logo.png" alt="" >
<span class="footer__logotext">КАЛУЖСКИЙ ЗАВОД<br> УГЛЕРОДНЫХ ТКАНЕЙ</span>
</a>
<img src="<?php bloginfo("template_directory"); ?>/assets/img/burger-icon.png" class="burger-icon">
</div>
<div class="mobile-menu">
<?php
wp_nav_menu( array(
'theme_location' => 'menu-1',
'menu' => '',
'container' => 'nav',
'container_class' => 'burger-menu',
'container_id' => '',
'menu_class' => '',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'depth' => 0,
'walker' => '',
) );
?>
<div class="burger-divider"></div>
<div class="top-head__contacts burger-contacts">
<a href="tel:+74993488252" class="top-head__phone"><img src="<?php bloginfo("template_directory"); ?>/assets/img/phone.png"><?php the_field('cwrap_phone', 'option'); ?></a>
<a href="mailto:info@kzut.ru" target="_blank">
<p class="top-head__email"><img src="<?php bloginfo("template_directory"); ?>/assets/img/envelope.png"><?php the_field('e-mail', 'option'); ?></p>
</a>
</div>
<div class="top-head__social burger-contacts burger-social">
<a href="<?php the_field('whatsapp_link', 'option'); ?>" target="_blank"><img src="<?php bloginfo("template_directory"); ?>/assets/img/whatsapp.png"></a>
<a href="<?php the_field('viber_link', 'option'); ?>" target="_blank"><img src="<?php bloginfo("template_directory"); ?>/assets/img/viber.png"></a>
<a href="<?php the_field('telegram_link', 'option'); ?>" target="_blank"><img src="<?php bloginfo("template_directory"); ?>/assets/img/telegram.png"></a>
<a href="<?php the_field('skype_link', 'option'); ?>" target="_blank"><img src="<?php bloginfo("template_directory"); ?>/assets/img/skype.png"></a>
</div>
<div class="burger-divider"></div>
<p class="footer__copyright burger-contacts"><a href="https://palladiumlab.com/" target="_blank" class="copyright">Разработано в <img src="<?php bloginfo("template_directory"); ?>/assets/img/logo_palladium.png" alt=""> <span class="palladiumlab">Palladiumlab 2019</span></a><br>
<span class="gray">© Все права защищены</span></p>
</div>
<p class="promo__title"><span>Российское производство</span><br> углеродной ткани и эпоксидного клея</p>
<p class="promo__subtitle">для усиления ЖБ конструкций<br> по японской технологии Toray Group</p>
<p><img src="<?php bloginfo("template_directory"); ?>/assets/img/arrow-down.png" alt="" class="promo__arrow"></p>
<a href="#" data-toggle="modal" data-target="#formModal" class="button-line btn-headphone btn-center">
<div class="button-line_icon">
<img src="<?php bloginfo("template_directory"); ?>/assets/img/headphone.png">
</div>
<div class="button-line__text">
Заказать консультацию
</div>
</a>
<div class="promo__items text-center">
<span id="products-price-link" class="promo__item">
<div class="promo__item__border"></div>
<img src="<?php bloginfo("template_directory"); ?>/assets/img/promo-icon-1.png" alt="" class="promo__item__icon">
<p class="promo__item__text">Цена ниже рыночной<br>на 7-12%</p>
</span>
<span id="work-with-us-link" class="promo__item">
<div class="promo__item__border"></div>
<img src="<?php bloginfo("template_directory"); ?>/assets/img/promo-icon-2.png" alt="" class="promo__item__icon">
<p class="promo__item__text">Возможность уменьшения<br>сметы на усиление<br>(работы + материалы) на 10-30% </p>
</span>
<span id="certificate-link" class="promo__item">
<div class="promo__item__border"></div>
<img src="<?php bloginfo("template_directory"); ?>/assets/img/promo-icon-3.png" alt="" class="promo__item__icon">
<p class="promo__item__text">Качество углепластика<br>(клей + ткань)<br>подтверждено испытаниями МГСУ</p>
</span>
</div>
</div>