-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
128 lines (99 loc) · 5.08 KB
/
Copy pathheader.php
File metadata and controls
128 lines (99 loc) · 5.08 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<title>Kick Back Comedy Club : Comedy Club Guildford | Comedy Club Surrey | Stand-up Comedy | Home Page</title>
<meta charset="utf-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<meta name="Description" content="<?php echo $metaDescription; ?>">
<meta name="keywords" content="<?php echo $metaKeywords; ?>" >
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<title>Kick Back Comedy Club</title>
<?php wp_head(); ?>
</head>
<body id="homePage" class="homePage">
<!-- mobile logo -->
<header>
<div class="aboveNavbar">
<div class="row">
<ul id="nav-logo-mob">
<li id="themoblogo"><a href="<?php bloginfo( 'url' );?>"></a></li>
</ul>
</div>
</div>
<div style="clear: both;"></div>
</header>
<div class="mainFullSize">
<div id="content">
<!-- Navigation -->
<nav class="mynavbar navbar navbar-default navbar-static-top">
<!-- social media icons -->
<div class="socialIcons">
<div >
<div id="socialWrap">
<ul id="social">
<li id="fb"><a target="_blank" href="https://www.facebook.com/KickBackComedy"></a></li>
<li id="tw"><a target="_blank" href="https://twitter.com/KickBackComedy"></a></li>
<li id="yt"><a target="_blank" href="http://www.youtube.com/channel/UCHbXMT__JMzGQHeNnyLzNLw"></a></li>
<li id="gp"><a target="_blank" href="https://plus.google.com/103816807015957316592/about?gl=uk&hl=en"></a></li>
</ul>
</div>
</div>
</div>
<!-- phone and email in full screen header -->
<div style="clear: both;"></div>
<div class="phoneAndEmail" >
<div id='email'><a href="mailto:info@kickbackcomedy.com" class="email" ><p class="email-text">EMAIL: info@kickbackcomedy.com</p></a></div>
<br />
<div id='phone'><a href="tel:+447784045110" class="phone" ><img src="./images/phone.png" /></a></div>
</div>
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class=""><img src="./images/nav-icon2.png" /></span>
</button>
<a class="navbar-brand" href="<?php bloginfo( 'url' );?>"></a>
<a class="navbar-call" href="tel:+447784045110" >
<img src="./images/phone-icon.png" />
</a>
<a class="navbar-sms" href="mailto:info@kickbackcomedy.com">
<img src="./images/email-icon.png" />
</a>
<a target="_blank" class="navbar-sms" href="https://www.facebook.com/KickBackComedy">
<img src="./images/fb-icon.png" />
</a>
<a target="_blank" class="navbar-sms" href="https://twitter.com/KickBackComedy">
<img src="./images/tw-icon.png" />
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<?php
$args = array(
'menu' => 'header-menu',
'menu_class' => 'nav navbar-nav navbar-right',
'menu_id' => 'navIcons',
'container' => 'false'
);
wp_nav_menu( $args );
?>
</div>
<!-- /.navbar-collapse -->
</nav>
<!-- join mailing list mobile only! -->
<div class="container">
<div class="row" >
<div id="mobileMailingList" class="col-xs-12 hidden-sm hidden-md hidden-lg well" >
<form id='frmMobileMailingList' name='frmMobileMailingList' onsubmit='return false;' >
<input class="mobileMailingListInput" type='text' id='mobileMailingListInput' name='mobileMailingListInput' placeholder='Join Mailing List Here' />
<input type="image" src="./images/MailingListButton.png" id='mobileMailingListSubmit' name='mobileMailingListSubmit' class='mobileMailingListSubmit'/>
</form>
<div class="clear"></div>
<div class='success' id='mobileSuccessMessage'></div>
<div class='error' id='mobileFailMessage'></div>
<div class='loading' id='MMLLoading'>We're working on it....</div>
<div class="clear"></div>
</div>
</div>
</div>