-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
104 lines (91 loc) · 4.12 KB
/
header.php
File metadata and controls
104 lines (91 loc) · 4.12 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
<?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 gorizont
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<form id="login-form" class="modal">
<div class="modal--inner">
<div class="modal__heading">
<h3 class="h3 modal__h3">Оставьте заявку</h3>
<p class="p modal__p">И мы перезвоним вам в ближайшее время</p>
</div>
<div class="modal__inputs">
<input type="text" class="input" placeholder="Ваше имя">
<input type="tel" class="input" placeholder="Ваш номер телефона">
<button class="button">Отправить</button>
</div>
</div>
</form>
<form id="develop-form" class="modal">
<div class="modal--inner">
<div class="modal__heading">
<h3 class="h3 modal__h3">Раздел в разработке</h3>
<p class="p modal__p">Вы можете оставить заявку и в ближайшее время мы перезвоним вам</p>
</div>
<div class="modal__inputs">
<input type="text" class="input" placeholder="Ваше имя">
<input type="tel" class="input" placeholder="Ваш номер телефона">
<button class="button">Отправить</button>
</div>
</div>
</form>
<div class="lines"><span></span><span></span><span></span></div>
<header class="header" data-js-header>
<div class="header--inner container" >
<div class="logo">
<a href="/"><img src="<?php echo get_template_directory_uri(); ?>/assets/img/icons/logo.svg" alt="logo" width="95" height="78"></a>
</div>
<nav class="header__nav">
<ul>
<li><a href="#mountaineering">Направления</a></li>
<li><a href="#develop-form" rel="modal:open">Контакты</a></li>
</ul>
</nav>
<div class="phone">
<a href="" class="phone__tel">+7(999)999-99-99</a>
<a href="#login-form" rel="modal:open" class="phone__callback">Связаться с нами</a>
</div>
<div class="header__overlay" data-js-header-overlay>
<nav class="header__menu">
<ul class="header__menu-list">
<li class="header__menu-item">
<a class="header__menu-link is-active" href="">Альпинизм и трекинг</a>
</li>
<li class="header__menu-item">
<a class="header__menu-link" href="">Экскурсионные туры</a>
</li>
<li class="header__menu-item">
<a class="header__menu-link" href="">Экскурсии и мероприятия для детей</a>
</li>
<li class="header__menu-item">
<a class="header__menu-link" href="">Авторская продукция</a>
</li>
</ul>
</nav>
</div>
<button class="burger nav-toggle visible-mobile" data-js-header-burger-button>
<span class="bar-top"></span>
<span class="bar-mid"></span>
<span class="bar-bot"></span>
</button>
</div>
</header><!-- #masthead -->