-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·33 lines (24 loc) · 1.01 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
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta name="viewport" content="width=device-width" />
<meta charset="utf-8">
<title><?php bloginfo("name"); ?> <?php wp_title("•"); ?></title>
<!--<meta name="viewport" content="width=device-width">-->
<meta name="application-name" content="<?php bloginfo('name'); ?>" />
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/favicon.ico">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
<!--Foundation-->
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/stylesheets/app.css" />
<!--Your CSS files-->
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/stylesheets/styles.css" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!--Menu Start-->
<div class="row">
<nav class="large-12 columns">
<?php wp_nav_menu( array('menu' => 'Main Menu' )); ?>
</nav>
</div>
<!--Menu End-->