-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
50 lines (44 loc) · 1.38 KB
/
header.php
File metadata and controls
50 lines (44 loc) · 1.38 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<title><?php wp_title('|', true, 'right');?> <?php bloginfo('name'); ?></title>
<meta charset="<?php bloginfo('charset');?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<!-- Pingbacks -->
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php if ( is_singular() ) wp_enqueue_script( "comment-reply" ); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class("Site"); ?>>
<header id="main-header">
<nav role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="#" class="brand-logo">nCatz</a>
<ul class="right hide-on-med-and-down">
<?php
wp_nav_menu(array(
'theme_location' => 'main',
'menu_id' => 'primary-menu',
'container' => '',
'items_wrap' => '%3$s'
));
?>
</ul>
<ul id="nav-mobile" class="side-nav">
<?php
wp_nav_menu(array(
'theme_location' => 'main',
'menu_id' => 'primary-menu',
'container' => '',
'items_wrap' => '%3$s'
));
?>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div> <!-- <div class="nav-wrapper container"> -->
</nav>
<?php if( is_front_page() ) : ?>
<?php header_text(); ?>
<?php endif; ?>
</header>
<main class="Site-content">