forked from skillcrush/103-skillcrush_starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
36 lines (32 loc) · 1.03 KB
/
header.php
File metadata and controls
36 lines (32 loc) · 1.03 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
<?php
/**
* The template for displaying the header
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package WordPress
* @subpackage Skillcrush_Starter
* @since Skillcrush Starter 2.0
*/
?>
<!DOCTYPE html>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width">
<meta name="description" content="A WordPress portfolio project site, built with Skillcrush.">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="hfeed site">
<header class="page-header container">
<a href="<?php echo site_url(); ?>" class="top-logo">
<span class="title"><?php bloginfo('name'); ?></span>
<span class="sub-title"><?php bloginfo('description'); ?></span>
</a>
<nav class="top-nav">
<?php wp_nav_menu(array('theme_location' => 'primary-menu')); ?>
</nav>
</header>
<div id="main" class="site-main">