-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
26 lines (24 loc) · 1.28 KB
/
header.php
File metadata and controls
26 lines (24 loc) · 1.28 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
<html>
<head>
<title><?php wp_title(); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width">
<link rel="icon" type="image/png" href="http://blizzardwatch.com/wp-content/themes/blizzardwatch/static/img/blizzard-watch-icon.png" />
<link href='/wp-content/themes/blizzardwatch/static/css/bootstrap.min.css' rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Lato:300,700|Droid+Serif:400,700' rel='stylesheet' type='text/css'>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> >
<div class="container-fluid">
<div class="row blizzardwatch-row blizzardwatch-row-space">
<div class="col-md-12">
<a href="/"><img class="site-logo" src="/wp-content/themes/blizzardwatch/static/img/blizzard-watch.png" /></a>
<?php echo Ads::get_instance()->render( 'top_banner' ); ?>
</div>
</div>
</div>
<div class="container-fluid" style="margin-top: -15px;">
<div class="row blizzardwatch-row blizzardwatch-row-space">
<?php wp_nav_menu( array( 'theme_location' => 'header-menu' ) ); ?>
</div>
</div>