forked from SecretImbecile/pressandforget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
24 lines (24 loc) · 992 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
<!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js no-svg">
<head>
<title><?php wp_title('| ', true, 'right'); bloginfo('title'); ?></title>
<meta name="description" content="<?php meta_description(); ?>" />
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>">
<?php wp_head(); ?>
</head>
<body>
<?php get_template_part('nav', 'header'); ?>
<div id="page">
<main>
<header>
<?php if ( has_header_image() && is_home() ) { ?>
<a href="<?php echo get_home_url(); ?>">
<img src="<?php echo( get_header_image() ); ?>" width="<?php echo get_custom_header()->width; ?>" alt="" />
</a>
<?php } ?>
<h1><a href="<?php echo get_home_url(); ?>"><?php bloginfo('title'); ?></a></h1>
<em><?php bloginfo('description'); ?></em>
</header>