79 lines
3.1 KiB
PHP
79 lines
3.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* The Rebalance header
|
||
|
*
|
||
|
* 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 Rebalance
|
||
|
*/
|
||
|
|
||
|
?><!DOCTYPE html>
|
||
|
<html class="no-js" <?php language_attributes(); ?>>
|
||
|
<head>
|
||
|
<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="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
|
||
|
<?php wp_head(); ?>
|
||
|
</head>
|
||
|
|
||
|
<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', 'rebalance' ); ?></a>
|
||
|
|
||
|
<header id="masthead" class="site-header" role="banner">
|
||
|
<div class="col-width header-wrap">
|
||
|
<?php $header_image = get_header_image();
|
||
|
if ( ! empty( $header_image ) ) { ?>
|
||
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="site-header-image-link" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
|
||
|
<img src="<?php header_image(); ?>" class="site-header-image" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="" />
|
||
|
</a>
|
||
|
<?php } ?>
|
||
|
<div class="site-heading">
|
||
|
<div class="site-branding">
|
||
|
<?php rebalance_site_logo(); ?>
|
||
|
<?php 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>
|
||
|
<?php else : ?>
|
||
|
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
|
||
|
<?php endif; ?>
|
||
|
</div><!-- .site-branding -->
|
||
|
<?php if ( has_nav_menu( 'social' ) ) : ?>
|
||
|
<nav class="social-navigation" role="navigation">
|
||
|
<?php wp_nav_menu( array(
|
||
|
'theme_location' => 'social',
|
||
|
'depth' => 1,
|
||
|
'container_class' => 'social-menu-wrap',
|
||
|
'menu_class' => 'social-menu',
|
||
|
'link_before' => '<span>',
|
||
|
'link_after' => '</span>'
|
||
|
) ); ?>
|
||
|
</nav><!-- #social-navigation -->
|
||
|
<?php endif; ?>
|
||
|
</div><!-- .site-heading -->
|
||
|
</div>
|
||
|
<div class="col-width sub-header-wrap">
|
||
|
|
||
|
<?php $description = get_bloginfo( 'description', 'display' );
|
||
|
if ( $description || is_customize_preview() ) : ?>
|
||
|
<p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
|
||
|
<?php endif; ?>
|
||
|
|
||
|
<?php if ( has_nav_menu( 'header' ) ) : ?>
|
||
|
<nav id="site-navigation" class="main-navigation" role="navigation">
|
||
|
<button class="menu-toggle" aria-controls="header-menu" aria-expanded="false" data-close-text="<?php esc_attr_e( 'Close', 'rebalance' ); ?>"><?php esc_html_e( 'Menu', 'rebalance' ); ?></button>
|
||
|
<?php wp_nav_menu( array(
|
||
|
'theme_location' => 'header',
|
||
|
'menu_id' => 'header-menu'
|
||
|
) ); ?>
|
||
|
</nav><!-- #site-navigation -->
|
||
|
<?php endif; ?>
|
||
|
|
||
|
</div><!-- .col-width -->
|
||
|
</header><!-- #masthead -->
|
||
|
|
||
|
<div id="content" class="site-content clear">
|
||
|
<div class="col-width">
|