-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
28 lines (24 loc) · 893 Bytes
/
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
<?php
$attachment_id = get_post_thumbnail_id();
$image_attributes = wp_get_attachment_image_src($attachment_id, 'full');
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<title><?php wp_title(); ?></title>
<meta charset="<?php bloginfo('charset'); ?>" />
<link href="<?php echo get_template_directory(); ?>/images/favicon.ico" rel="shortcut icon" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<button class="nav-trigger genericon genericon-menu"></button>
<button class="nav-close genericon genericon-close-alt"></button>
<nav class="access" role="navigation">
<?php wp_nav_menu(array('container_class' => 'menu-header', 'theme_location' => 'primary')); ?>
</nav>
<header class="header-main">
<h1><?php the_title(); ?></h1>
</header>
<div class="wrapper">
<main>