header.php 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <title><?php wp_title( '|', true, 'right' ); ?></title>
  18. <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. "/>
  19. <meta property="og:image" content="http://www.climategreenwood.com/wp-content/themes/climatecontrol/images/climategreenwood.jpg" />
  20. <link rel="profile" href="http://gmpg.org/xfn/11">
  21. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  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. <meta name="theme-color" content="#ffffff">
  29. <link href='https://fonts.googleapis.com/css?family=Economica:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
  30. <!--[if lt IE 9]><script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script><![endif]-->
  31. <?php wp_head(); ?>
  32. </head>
  33. <body <?php body_class(); ?>>
  34. <div id="page" class="hfeed site">
  35. <header id="masthead" class="site-header" role="banner">
  36. <div class="header-main">
  37. <div class="inner-wrapper">
  38. <div class="header-left">
  39. <div class="header-links">
  40. <?php if ( get_field('header_links', 'options') ) {
  41. while( has_sub_field('header_links', 'options') ) {
  42. $page = get_sub_field('page');
  43. echo "<a href='" . get_permalink( $page->ID ) . "'>" . $page->post_title . "</a>";
  44. }
  45. } ?>
  46. </div>
  47. <div class="phone"><?php the_field('phone', 'options'); ?></div>
  48. </div>
  49. <div class="logo">
  50. <a href="<?php bloginfo('url'); ?>"></a>
  51. </div>
  52. <!--<?php get_search_form(); ?>-->
  53. <div class="social">
  54. <?php if ( get_field('social_media', 'options') ) {
  55. echo "<ul class='social-links'>";
  56. while( has_sub_field('social_media', 'options') ) {
  57. echo "<li><a href='" . get_sub_field('social_link') . "' target='_blank' style='background-image:url(" . get_sub_field('social_icon') . ");'>" . get_sub_field('social_text') . "</a></li>";
  58. }
  59. echo "</ul>";
  60. } ?>
  61. </div>
  62. </div>
  63. </div>
  64. <nav id="primary-navigation" class="site-navigation primary-navigation inner-wrapper" role="navigation">
  65. <div class="inner-wrapper">
  66. <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
  67. </div>
  68. <div class="sub-nav-back"></div>
  69. </nav>
  70. </header><!-- #masthead -->
  71. <div class="bg-element"></div>
  72. <div id="main" class="site-main">