-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
36 lines (30 loc) · 1.15 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
35
36
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Load webfonts -->
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/assets/css/main.css" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header id="site-header" class="container" role="banner">
<div id="site-info">
<a id="logo" href="<?php echo esc_url( home_url('/') ); ?>" title="<?php echo esc_html( get_bloginfo('name') ); ?>" rel="home">
<?php echo esc_html( get_bloginfo('name') ); ?>
</a>
<?php /*
Personal Site: removing for me (shouldn't remove from all)
<div id="site-description">
<p><small><?php bloginfo('description'); ?></small></p>
</div>
*/ ?>
</div>
<nav id="site-menu">
<?php wp_nav_menu( array('theme_location' => 'main-menu') ); ?>
</nav>
</header>
<section class="layout-sidebar">