jeremy-wordpress-theme/header.php

58 lines
1.9 KiB
PHP
Raw Permalink Normal View History

2018-07-25 19:49:58 +00:00
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package jeremy-wordpress-theme
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
2019-05-18 06:03:04 +00:00
<head>
2018-07-25 19:49:58 +00:00
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
2019-05-18 06:03:04 +00:00
</head>
2018-07-25 19:49:58 +00:00
2019-05-18 06:03:04 +00:00
<body <?php body_class(); ?>>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'jeremy-wordpress-theme' ); ?></a>
2018-07-25 19:49:58 +00:00
2019-05-18 06:03:04 +00:00
<header id="masthead" class="site-header">
<nav id="site-navigation" class="main-navigation">
<!-- <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false">
2019-05-18 06:03:04 +00:00
<img class="icon"
src="<?php echo get_template_directory_uri() . '/icons/menu.svg'?>"
alt="menu">
</button> -->
2019-05-18 06:03:04 +00:00
<?php
wp_nav_menu( array(
'theme_location' => 'menu-1',
'menu_id' => 'primary-menu',
) );
?>
</nav><!-- #site-navigation -->
2018-07-25 19:49:58 +00:00
<div class="site-branding">
2019-05-18 06:03:04 +00:00
<?php
the_custom_logo();
if ( is_front_page() && is_home() ) :
?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
2018-07-25 19:49:58 +00:00
<?php
$jeremy_wordpress_theme_description = get_bloginfo( 'description', 'display' );
if ( $jeremy_wordpress_theme_description || is_customize_preview() ) :
2019-05-18 06:03:04 +00:00
?>
<p class="site-description"><?php echo $jeremy_wordpress_theme_description; /* WPCS: xss ok. */ ?></p>
2018-07-25 19:49:58 +00:00
<?php endif; ?>
2019-05-18 06:03:04 +00:00
<?php endif; ?>
2018-07-25 19:49:58 +00:00
</div><!-- .site-branding -->
2019-05-18 06:03:04 +00:00
</header><!-- #masthead -->
2018-07-25 19:49:58 +00:00
2019-05-18 06:03:04 +00:00
<div id="content" class="site-content">