header.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * The Header for our theme
  4. *
  5. * Displays all of the <head> section and everything up till <div id="main">
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Fourteen
  9. * @since Twenty Fourteen 1.0
  10. */
  11. ?><!DOCTYPE html>
  12. <!--[if IE 7]><html class="ie ie7" <?php language_attributes(); ?>><![endif]-->
  13. <!--[if IE 8]><html class="ie ie8" <?php language_attributes(); ?>><![endif]-->
  14. <!--[if !(IE 7) | !(IE 8) ]><!--><html <?php language_attributes(); ?>><!--<![endif]-->
  15. <head>
  16. <meta charset="<?php bloginfo( 'charset' ); ?>">
  17. <meta name="viewport" content="width=device-width, initial-scale=1">
  18. <title><?php wp_title( '|', true, 'right' ); ?></title>
  19. <meta name="description" content="Climate Control Systems of Greenwood has been owned and operated in Greenwood, SC for over 25 years. We are a full-service heating, ventilation and air conditioning company offering repairs and installations for residential and commercial customers. "/>
  20. <meta property="og:image" content="http://www.climategreenwood.com/wp-content/themes/climatecontrol/images/climategreenwood.jpg" />
  21. <meta name="theme-color" content="#ffffff">
  22. <link rel="shortcut icon" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/favicon.ico" />
  23. <link rel="apple-touch-icon" sizes="180x180" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/apple-touch-icon.png">
  24. <link rel="icon" type="image/png" sizes="32x32" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/favicon-32x32.png">
  25. <link rel="icon" type="image/png" sizes="16x16" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/favicon-16x16.png">
  26. <link rel="manifest" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/manifest.json">
  27. <link rel="mask-icon" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/safari-pinned-tab.svg" color="#5bbad5">
  28. <link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
  29. <!--[if lt IE 9]><script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script><![endif]-->
  30. <?php wp_head(); ?>
  31. <script src='https://www.google.com/recaptcha/api.js'></script>
  32. </head>
  33. <body <?php body_class(); ?>>
  34. <div id="page">
  35. <header id="masthead" class="site-header" role="banner">
  36. <div class="header-main">
  37. <div class="inner-wrapper">
  38. <div class="logo">
  39. <a href="<?php bloginfo('url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/climate_control.png" alt="Climate Control Systems of Greenwood Inc."></a>
  40. </div>
  41. <div class="header-left">
  42. <div class="phone">
  43. <a href="tel:+18642291409">864-229-1409</a>
  44. </div>
  45. <div class="header-links">
  46. <a href='service-request/'>Service Request</a>
  47. <a href='estimate-request/'>Estimate Request</a>
  48. <a href='payment-options/'>Financing</a>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. </header><!-- #masthead -->
  54. <div class="main-nav">
  55. <nav id="primary-navigation" class="site-navigation primary-navigation inner-wrapper " role="navigation">
  56. <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu', 'container_id' => 'cssmenu', 'walker' => new CSS_Menu_Maker_Walker() )); ?>
  57. </nav>
  58. </div>
  59. <div id="main" class="site-main">