-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
34 lines (31 loc) · 1.55 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
<?php
$templatedirectory = get_template_directory_uri();
?>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Muli:400,300|Playfair+Display|Libre+Baskerville' rel='stylesheet' type='text/css'>
<script src="https://code.jquery.com/jquery-1.12.1.min.js"></script>
<link rel="stylesheet" href="<?php echo $templatedirectory ?>/css/bootstrap.min.css">
<script src="<?php echo $templatedirectory ?>/js/bootstrap.min.js"></script>
<title><?php bloginfo('name'); echo " - "; the_title(); ?></title>
<link rel="stylesheet" href="<?php echo $templatedirectory ?>/css/wordpress.css">
<link rel="stylesheet" href="<?php echo $templatedirectory ?>/style.css">
<?php wp_head(); ?>
</head>
<body>
<div class="container">
<div class="row headerrow">
<div class="col-sm-12 hidden-xs navigation">
<div class="pull-left"><a href="/" class="title"><h1 class="title"><?php bloginfo('name');?></h1></a></div>
<div class="pull-right titlesize"><?php wp_nav_menu( array( 'theme_location' => 'header-menu', 'menu_class' => 'list list-inline' ) ); ?></div>
</div>
<div class="col-sm-12 hidden-sm hidden-md hidden-lg navigation">
<h1 class="title"><?php bloginfo('name');?>
</div>
<div class="col-sm-12 hidden-sm hidden-md hidden-lg navigation">
<?php
wp_nav_menu( array( 'theme_location' => 'header-menu', 'menu_class' => 'list list-inline' ) );
?>
</div>
</div>