-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
61 lines (56 loc) · 2 KB
/
Copy pathheader.php
File metadata and controls
61 lines (56 loc) · 2 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title><?php wp_title('|', true, 'right'); ?><?php bloginfo('name'); ?></title>
<?php wp_head(); ?>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
</head>
<body <?php body_class(); ?>>
<header>
<div class="header-inner">
<div class="top-bar">
<div class="container">
<ul class="social-top-bar">
<li>
<a href="#" class="text-black">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="logo-container">
<a href="#">
<h1 class="d-none">Slan Hotel</h1>
<img src="<?php echo IMAGES; ?>/logoslanhotel.jpg" alt="Slan Hotel">
</a>
</div>
<nav class="main-menu-container">
<div class="container">
<!-- Menu -->
<?php wp_nav_menu(array(
'theme_location' => 'main_menu',
'menu_class' => 'main-menu',
'menu_id' => 'mainMenu'
)); ?>
<?php // get_search_form(); ?>
<a href="#" class="mobile-menu-button" id="mobileMenuButton">
MENÚ PRINCIPAL <i class="fas fa-bars"></i>
</a>
</div>
</nav>
</div>
</header>