header.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * The header for our theme
  4. *
  5. * This is the template that displays all of the <head> section and everything up until <div id="content">
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package GGPromarket
  10. */
  11. ?>
  12. <!DOCTYPE html>
  13. <html <?php language_attributes(); ?>>
  14. <head>
  15. <title><?php the_title(); ?></title>
  16. <meta charset="<?php bloginfo( 'charset' ); ?>">
  17. <meta name="viewport" content="width=device-width, initial-scale=1">
  18. <link rel="profile" href="https://gmpg.org/xfn/11">
  19. <!-- <script src="https://api-maps.yandex.ru/2.1/?apikey=f995437f-03a2-48ba-a815-92262155fffd&lang=ru_RU" type="text/javascript"></script>-->
  20. <?php wp_head(); ?>
  21. </head>
  22. <body <?php body_class(); ?>>
  23. <header class = "main-header">
  24. <div class = "wrapper">
  25. <nav class = "main-navigation">
  26. <ul class = "logo-list">
  27. <li class = "navigation-item navigation-main-logo">
  28. <a
  29. href = "<?php echo home_url('', 'https') ?>"
  30. class = "navigation-item main-logo"
  31. >
  32. <img src =
  33. "<?php echo get_stylesheet_directory_uri() . '/assets/img/svg/nerds-logo.svg'; ?>"
  34. alt = "Логотип Nerd's" width = "160" height = "65">
  35. </a>
  36. </li>
  37. </ul>
  38. <ul class = "navigation-list">
  39. <?php
  40. wp_nav_menu(
  41. array(
  42. 'theme_location' => 'header-menu',
  43. 'container' => '',
  44. 'menu_class' => 'navigation-list',
  45. 'menu_id' => '',
  46. 'items_wrap' => '%3$s'
  47. )
  48. )
  49. ?>
  50. <!-- <li class = "navigation-item navigation-item-disabled"><a href = "#">Клиенты</a></li>-->
  51. <!-- <li class = "navigation-item"><a href = "catalog">Магазин</a></li>-->
  52. <!-- <li class = "navigation-item navigation-item-disabled"><a href = "#">Контакты</a></li>-->
  53. </ul>
  54. <ul class = "navigation-backet">
  55. <li class = "navigation-item navigation-backet-item navigation-item-disabled"><a href = "#">Корзина</a></li>
  56. </ul>
  57. </nav>