Advertisement
jegtheme

header.php

Aug 18th, 2014
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.89 KB | None | 0 0
  1. <!doctype html>
  2. <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" <?php language_attributes(); ?>> <![endif]-->
  3. <!--[if IE 7]>    <html class="no-js lt-ie9 lt-ie8" <?php language_attributes(); ?>> <![endif]-->
  4. <!--[if IE 8]>    <html class="no-js lt-ie9" <?php language_attributes(); ?>> <![endif]-->
  5. <!--[if IE 9]>    <html class="no-js lt-ie10" <?php language_attributes(); ?>> <![endif]-->
  6. <!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
  7.  
  8. <head>
  9.     <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  10.     <title><?php wp_title('|', true, 'right'); bloginfo('name'); ?></title>
  11.     <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' />
  12.     <link rel="profile" href="http://gmpg.org/xfn/11" />
  13.     <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  14.     <?php wp_head(); ?>
  15. </head>
  16. <?php $additionalclass = jeg_get_additional_body_class(); ?>
  17. <body <?php body_class($additionalclass); ?>>
  18. <!--[if lt IE 9]>
  19.     <p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
  20. <![endif]-->
  21. <?php get_template_part('template/loading', jeg_get_loading_type()); ?>
  22. <div class="jviewport">
  23.     <?php
  24.     if(wp_is_mobile()) {
  25.         get_template_part('template/mobilemenu');
  26.     }
  27.     ?>
  28.     <div class="container">
  29.         <div class="containerwrapper">
  30.             <?php get_template_part('template/responsiveheader'); ?>
  31.             <?php
  32.             if(!wp_is_mobile()) {
  33.                 get_template_part('template/navigation');
  34.             }
  35.             ?>
  36.             <div id="rightsidecontainer">
  37.                 <div class="contentholder">
  38.                     <div class="content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement