-
Notifications
You must be signed in to change notification settings - Fork 0
/
header-fixed_menu.php
103 lines (92 loc) · 5.4 KB
/
header-fixed_menu.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.
*
* 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 Union
*/
?><!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="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<link href='https://fonts.googleapis.com/css?family=Dosis:700,800' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet">
<!-- 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">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<?php wp_head(); ?>
</head>
<?php require_once('inc/wp_bootstrap_navwalker.php'); ?>
<body <?php body_class(); ?>>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'union' ); ?></a>
<header id="masthead" class="site-header fixed" role="banner">
<div class="container-fluid">
<div class="row">
<div class="logo_nav_container">
<div class="logo_container hidden-md hidden-xs hidden-sm">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<img src="<?php header_image(); ?>" class="navlogo-image" alt="TEAM Logo">
</a>
</div>
<div class="nav-container">
<div class="row">
<div class="col-xs-12 col-sm-5">
<div class="header_search">
<?php get_search_form(); ?>
</div>
</div>
<div class="col-xs-12 col-sm-5">
<div class="nav-right">
<div class="social_media">
<?php echo DISPLAY_ULTIMATE_PLUS(); ?>
</div>
<div>
<a href="http://www.teamasianminds.org/make-a-donation/">
<button class="btn btn-lg btn-warning donate_button">
<span class="glyphicon glyphicon-heart-empty"></span> Donate
</button>
</a>
</div>
</div>
</div>
</div
<div class="row">
<nav id="site-navigation" class="navbar navbar-default navbar-internal" role="navigation">
<div class="navbar-header navbar-left">
<button type="button" class="navbar-toggle pull-left collapsed" data-toggle="collapse" data-target="#main_nav" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand hidden-lg" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">HOME</a>
</div>
<div class="collapse navbar-collapse" id="main_nav">
<?php wp_nav_menu( array(
'theme_location' => 'primary',
'menu_id' => 'primary-menu',
'menu_class' => 'nav navbar-nav',
'fallback_cb' => 'wp_bootstrap_navwalker::fallback',
'walker' => new wp_bootstrap_navwalker()
) ); ?>
</div>
</nav><!-- #site-navigation -->
</div
</div>
</div>
</div>
</div><!-- .container -->
</header><!-- #masthead -->
<div style="height: 122px;"></div>
<div id="content" class="site-content">