navigation-top.php 1014 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Displays top navigation
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Seventeen
  7. * @since 1.0
  8. * @version 1.2
  9. */
  10. ?>
  11. <nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Top Menu', 'twentyseventeen' ); ?>">
  12. <button class="menu-toggle" aria-controls="top-menu" aria-expanded="false">
  13. <?php
  14. echo twentyseventeen_get_svg( array( 'icon' => 'bars' ) );
  15. echo twentyseventeen_get_svg( array( 'icon' => 'close' ) );
  16. _e( 'Menu', 'twentyseventeen' );
  17. ?>
  18. </button>
  19. <?php wp_nav_menu( array(
  20. 'theme_location' => 'top',
  21. 'menu_id' => 'top-menu',
  22. ) ); ?>
  23. <?php if ( ( twentyseventeen_is_frontpage() || ( is_home() && is_front_page() ) ) && has_custom_header() ) : ?>
  24. <a href="#content" class="menu-scroll-down"><?php echo twentyseventeen_get_svg( array( 'icon' => 'arrow-right' ) ); ?><span class="screen-reader-text"><?php _e( 'Scroll down to content', 'twentyseventeen' ); ?></span></a>
  25. <?php endif; ?>
  26. </nav><!-- #site-navigation -->