-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·103 lines (94 loc) · 3.13 KB
/
header.php
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
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till #main div
*
* @package Odin
* @since 2.2.0
*/
?><!DOCTYPE html>
<html class="no-js" <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<link href="<?php echo get_template_directory_uri(); ?>/assets/images/favicon.png" rel="shortcut icon" />
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/assets/js/html5.js"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body class="home">
<div id="preloader"></div><!-- #preloader -->
<div class="container" id="container-preload">
<header id="header-principal" class ="row" id="header" role="banner">
<div id="menu-lado" class ="aparecido com-fundo <?php
if ( wp_is_mobile() ) {
echo "mobile";
}
else{
echo "desktop";
}
?>">
<div id="triangulo_menu" ></div>
<a class="menu-fechado" href="" title="">
<button id="botao-menu" type="button" class=" navbar-toggle" data-toggle="" data-target=".navbar-main-navigation">
<span class="sr-only"><?php _e( 'Toggle navigation', 'odin' ); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</a>
</div><!--menu lado-->
<svg id="svg_header">
<defs>
<pattern id="image" patternUnits="userSpaceOnUse" height="349" width="466">
<image x="0" y="0" height="349" width="466" xlink:href="<?php echo get_template_directory_uri(); ?>/assets/images/asfalt.jpg"></image>
</pattern>
</defs>
<polygon id="triangulo_header_topo" points=""/>
<polygon fill="url(#image)" id="poligono_header" points=""/>
<polygon id="triangulo_header_baixo" points=""/>
</svg>
<nav id="main-navigation" class=" aparecido menu-inicial col-md-12 navbar navbar-default <?php
if ( wp_is_mobile() ) {
echo "mobile";
}
else{
echo "desktop";
}
?>" role="navigation">
<div class="navbar-header">
<?php /*
<a class="navbar-brand" href="<?php echo home_url(); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
*/ ?>
</div>
<div id="menu-interno" class="com-fundo navbar-main-navigation <?php
if ( wp_is_mobile() ) {
echo "mobile";
}
else{
echo "desktop";
}
?>">
<?php
wp_nav_menu(
array(
'theme_location' => 'main-menu',
'depth' => 2,
'container' => false,
'menu_class' => 'nav navbar-nav',
'fallback_cb' => '',
// 'walker' => new Odin_Bootstrap_Nav_Walker()
)
);
?>
<?php if ( is_active_sidebar( 'linguas' ) ) : ?>
<?php dynamic_sidebar( 'linguas' ); ?>
<?php endif; ?>
</div><!-- .navbar-collapse -->
</nav><!-- #main-menu -->
</header><!-- #header -->
<div id="main" class="site-main row">