-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
26 lines (26 loc) · 901 Bytes
/
header.php
File metadata and controls
26 lines (26 loc) · 901 Bytes
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
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php wp_title('', true); ?></title>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<header class="container">
<?php
get_template_part( 'parts/header', 'content');
get_template_part( 'parts/header', 'menu');
get_template_part( 'parts/banner');
?>
</header>
<?php
get_template_part( 'parts/featured');
if (is_author()) {
get_template_part( 'parts/bio');
}
?>