|
@@ -9,11 +9,6 @@
|
|
* @package Seedlet
|
|
* @package Seedlet
|
|
* @since 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
*/
|
|
-$has_primary_nav = has_nav_menu( 'primary' );
|
|
|
|
-$header_classes = 'site-header header_classes';
|
|
|
|
-$header_classes .= has_custom_logo() ? ' has-logo' : '';
|
|
|
|
-$header_classes .= true === get_theme_mod( 'display_title_and_tagline', true ) ? ' has-title-and-tagline' : '';
|
|
|
|
-$header_classes .= $has_primary_nav ? ' has-menu' : '';
|
|
|
|
?><!doctype html>
|
|
?><!doctype html>
|
|
<html <?php language_attributes(); ?>>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<head>
|
|
@@ -28,100 +23,6 @@ $header_classes .= $has_primary_nav ? ' has-menu' : '';
|
|
<div id="page" class="site">
|
|
<div id="page" class="site">
|
|
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'seedlet' ); ?></a>
|
|
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'seedlet' ); ?></a>
|
|
|
|
|
|
- <?php if ( false === get_theme_mod( 'hide_site_header', false ) ) : ?>
|
|
|
|
- <header id="masthead" class="<?php echo $header_classes; ?>" role="banner">
|
|
|
|
- <?php get_template_part( 'template-parts/header/site-branding' ); ?>
|
|
|
|
-
|
|
|
|
- <?php if ( $has_primary_nav ) : ?>
|
|
|
|
- <nav id="site-navigation" class="primary-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Main', 'seedlet' ); ?>">
|
|
|
|
- <button id="primary-close-menu" class="button close">
|
|
|
|
- <span class="dropdown-icon close"><?php _e( 'Close', 'seedlet' ); ?> <?php echo seedlet_get_icon_svg( 'close' ); ?></span>
|
|
|
|
- <span class="hide-visually collapsed-text"><?php _e( 'collapsed', 'seedlet' ); ?></span>
|
|
|
|
- </button>
|
|
|
|
- <?php
|
|
|
|
- // Get menu slug
|
|
|
|
- $location_name = 'primary';
|
|
|
|
- $locations = get_nav_menu_locations();
|
|
|
|
- $menu_id = $locations[ $location_name ];
|
|
|
|
- $menu_obj = wp_get_nav_menu_object( $menu_id );
|
|
|
|
-
|
|
|
|
- wp_nav_menu(
|
|
|
|
- array(
|
|
|
|
- 'theme_location' => 'primary',
|
|
|
|
- 'menu_class' => 'menu-wrapper',
|
|
|
|
- 'container_class' => 'primary-menu-container',
|
|
|
|
- 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
|
|
|
|
- )
|
|
|
|
- );
|
|
|
|
- ?>
|
|
|
|
- </nav><!-- #site-navigation -->
|
|
|
|
- <?php endif; ?>
|
|
|
|
-
|
|
|
|
- <div class="menu-button-container">
|
|
|
|
- <?php if ( $has_primary_nav ) : ?>
|
|
|
|
- <button id="primary-open-menu" class="button open">
|
|
|
|
- <span class="dropdown-icon open"><?php _e( 'Menu', 'seedlet' ); ?> <?php echo seedlet_get_icon_svg( 'menu' ); ?></span>
|
|
|
|
- <span class="hide-visually expanded-text"><?php _e( 'expanded', 'seedlet' ); ?></span>
|
|
|
|
- </button>
|
|
|
|
- <?php endif; ?>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
- <?php if ( class_exists( 'WooCommerce' ) ) : ?>
|
|
|
|
- <nav class="woo-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Woo Minicart', 'seedlet' ); ?>">
|
|
|
|
- <?php
|
|
|
|
- echo( sprintf(
|
|
|
|
- '<button id="woo-close-menu" class="button close">
|
|
|
|
- <span class="dropdown-icon close">%1$s %2$s</span>
|
|
|
|
- <span class="hide-visually collapsed-text">%3$s</span>
|
|
|
|
- </button>
|
|
|
|
- <div class="woocommerce-menu-container">
|
|
|
|
- <ul id="woocommerce-menu" class="menu-wrapper"">
|
|
|
|
- <li class="menu-item woocommerce-menu-item %4$s" title="%5$s">
|
|
|
|
- %6$s
|
|
|
|
- <ul class="sub-menu">
|
|
|
|
- <li class="woocommerce-cart-widget" title="%7$s">
|
|
|
|
- %8$s
|
|
|
|
- </li>
|
|
|
|
- </ul>
|
|
|
|
- </li>',
|
|
|
|
- esc_html__( 'Close', 'seedlet' ),
|
|
|
|
- seedlet_get_icon_svg( 'close' ),
|
|
|
|
- esc_html__( 'collapsed', 'seedlet' ),
|
|
|
|
- is_cart() ? 'current-menu-item' : '',
|
|
|
|
- esc_attr__( 'View your shopping cart', 'seedlet' ),
|
|
|
|
- seedlet_cart_link(),
|
|
|
|
- esc_attr__( 'View your shopping list', 'seedlet' ),
|
|
|
|
- seedlet_cart_widget()
|
|
|
|
- ) );
|
|
|
|
- ?>
|
|
|
|
- </nav><!-- .woo-navigation -->
|
|
|
|
- <?php endif; ?>
|
|
|
|
-
|
|
|
|
- <div class="menu-button-container">
|
|
|
|
- <?php if ( class_exists( 'WooCommerce' ) ) : ?>
|
|
|
|
- <button id="woo-open-menu" class="button open">
|
|
|
|
- <span class="dropdown-icon open"><?php echo seedlet_get_icon_svg( 'shopping_cart' ); ?> <?php _e( 'Cart', 'seedlet' ); ?></span>
|
|
|
|
- <span class="hide-visually expanded-text"><?php esc_html__( 'expanded', 'seedlet' ); ?></span>
|
|
|
|
- </button>
|
|
|
|
- <?php endif; ?>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
- <?php if ( has_nav_menu( 'social' ) ) : ?>
|
|
|
|
- <nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Social Links Menu', 'seedlet' ); ?>">
|
|
|
|
- <?php
|
|
|
|
- wp_nav_menu(
|
|
|
|
- array(
|
|
|
|
- 'theme_location' => 'social',
|
|
|
|
- 'link_before' => '<span class="screen-reader-text">',
|
|
|
|
- 'link_after' => '</span>' . seedlet_get_icon_svg( 'link' ),
|
|
|
|
- 'depth' => 1,
|
|
|
|
- )
|
|
|
|
- );
|
|
|
|
- ?>
|
|
|
|
- </nav><!-- .social-navigation -->
|
|
|
|
- <?php endif; ?>
|
|
|
|
-
|
|
|
|
- </header><!-- #masthead -->
|
|
|
|
- <?php endif; ?>
|
|
|
|
|
|
+ <?php get_template_part( 'template-parts/header/header-content' ); ?>
|
|
|
|
|
|
<div id="content" class="site-content">
|
|
<div id="content" class="site-content">
|