1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- /**
- * The Header for our theme
- *
- * Displays all of the <head> section and everything up till <div id="main">
- *
- * @package WordPress
- * @subpackage Twenty_Fourteen
- * @since Twenty Fourteen 1.0
- */
- ?><!DOCTYPE html>
- <!--[if IE 7]><html class="ie ie7" <?php language_attributes(); ?>><![endif]-->
- <!--[if IE 8]><html class="ie ie8" <?php language_attributes(); ?>><![endif]-->
- <!--[if !(IE 7) | !(IE 8) ]><!--><html <?php language_attributes(); ?>><!--<![endif]-->
- <head>
- <meta charset="<?php bloginfo( 'charset' ); ?>">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title><?php wp_title( '|', true, 'right' ); ?></title>
- <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. "/>
- <meta property="og:image" content="http://www.climategreenwood.com/wp-content/themes/climatecontrol/images/climategreenwood.jpg" />
- <meta name="theme-color" content="#ffffff">
- <link rel="shortcut icon" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/favicon.ico" />
- <link rel="apple-touch-icon" sizes="180x180" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/apple-touch-icon.png">
- <link rel="icon" type="image/png" sizes="32x32" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="16x16" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/favicon-16x16.png">
- <link rel="manifest" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/manifest.json">
- <link rel="mask-icon" href="<?php bloginfo('stylesheet_directory'); ?>/images/favicons/safari-pinned-tab.svg" color="#5bbad5">
- <link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
- <!--[if lt IE 9]><script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script><![endif]-->
- <?php wp_head(); ?>
- <script src='https://www.google.com/recaptcha/api.js'></script>
- </head>
- <body <?php body_class(); ?>>
- <div id="page">
- <header id="masthead" class="site-header" role="banner">
- <div class="header-main">
- <div class="inner-wrapper">
- <div class="logo">
- <a href="<?php bloginfo('url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/climate_control.png" alt="Climate Control Systems of Greenwood Inc."></a>
- </div>
- <div class="header-left">
- <div class="phone">
- <a href="tel:+18642291409">864-229-1409</a>
- </div>
- <div class="header-links">
- <a href='service-request/'>Service Request</a>
- <a href='estimate-request/'>Estimate Request</a>
- <a href='payment-options/'>Financing</a>
- </div>
- </div>
- </div>
- </div>
- </header><!-- #masthead -->
- <div class="main-nav">
- <nav id="primary-navigation" class="site-navigation primary-navigation inner-wrapper " role="navigation">
- <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu', 'container_id' => 'cssmenu', 'walker' => new CSS_Menu_Maker_Walker() )); ?>
- </nav>
- </div>
- <div id="main" class="site-main">
|