66 lines
3.2 KiB
PHP
66 lines
3.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<link rel="shortcut icon" href="<?php echo get_template_directory_uri() ?>/assets/img/logo2.png" type="image/x-icon">
|
|
|
|
<title><?php wp_title('') ?></title>
|
|
<?php wp_head( )?>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="header-wrapper">
|
|
<div class="header-container">
|
|
<header class="header">
|
|
<div class="row align-items-center justify-content-around header-top">
|
|
|
|
<div class="col-3 col-sm-4 col-lg" style="justify-content: center; border-right: 1px solid #fff">
|
|
<a class="header-info__logo" href="<?php echo get_home_url() ?>">
|
|
<img src="<?php echo get_template_directory_uri()?>/assets/img/armanty_logo.png" alt="logotype">
|
|
<img src="<?php echo get_template_directory_uri()?>/assets/img/logo2.png" alt="logotype">
|
|
</a>
|
|
</div>
|
|
|
|
<div class="col-4 col-sm-2 col-lg header-phone-number-block" style="justify-content: center; border-right: 1px solid #fff; height: 100%">
|
|
<div style="display: flex; flex-direction: column; height: 100%; padding: 10px 0; text-align: center;">
|
|
<a href="tel:+79269821494" class="col header-number">+7 (926) 982-14-94</a>
|
|
<a href="tel:+79257205654" class="col header-number">+7 (925) 720-56-54</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-4 col-sm-2 col-lg" style="justify-content: center; border-right: 1px solid #fff; height: 100%; display: flex; align-items: center">
|
|
<a href="<?php echo get_home_url()?>/form" class=""><button class="header_order-call btn btn-danger">Заказать звонок</button></a>
|
|
</div>
|
|
|
|
<div class="col-4 col-sm-2 col-lg" style="border-right: 1px solid #fff; height: 100%; display: flex; align-items: center; justify-content: center">
|
|
<a href="<?php echo get_home_url()?>/form"><button class="header_order-holiday btn btn-danger">Заказать праздник</button></a>
|
|
</div>
|
|
|
|
<div class="col-4 col-sm-1 col-lg header-info__btns_right">
|
|
<div class="social-links row align-items-center">
|
|
<a target="_blank" href="https://vk.com/armanty"><i class="fa fa-vk" aria-hidden="true"></i></a>
|
|
<a target="_blank" href="https://www.instagram.com/armantyquests/"><i class="fa fa-instagram" aria-hidden="true"></i></a>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
</div>
|
|
<div class="header-navmenu__container">
|
|
<!-- Выыводим меню в шапке -->
|
|
<?php wp_nav_menu(
|
|
array(
|
|
'theme_location' =>'header_menu',
|
|
'menu' => 'header-menu',
|
|
'menu_class' => 'header-navmenu__list',
|
|
'container' => 'nav',
|
|
'container_class' => 'header-navmenu',
|
|
'items_wrap' => '<ul class="header-navmenu__list row align-items-start">%3$s</ul>',
|
|
));
|
|
?>
|
|
</div>
|
|
</div>
|
|
|