Advertisement
Guest User

Untitled

a guest
Feb 15th, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--[if IE 7]>
  3. <html class="ie ie7" <?php language_attributes(); ?>>
  4. <![endif]-->
  5. <!--[if IE 8]>
  6. <html class="ie ie8" <?php language_attributes(); ?>>
  7. <![endif]-->
  8. <!--[if !(IE 7) | !(IE 8) ]><!-->
  9. <html <?php language_attributes(); ?>>
  10. <!--<![endif]-->
  11. <head>
  12. <meta charset="<?php bloginfo( 'charset' ); ?>">
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  14. <title><?php wp_title( '|', true, 'right' ); ?></title>
  15. <link rel="profile" href="http://gmpg.org/xfn/11">
  16. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  17.  
  18. <?php wp_head(); ?>
  19. </head>
  20. <body <?php body_class(); ?>>
  21.  
  22. <?php
  23.  
  24. get_template_part( 'top-nav' );
  25.  
  26. ?>
  27. <!--Video Section-->
  28. <section class="content-section video-section" id="section0">
  29. <?php if ( get_header_image() ) : ?>
  30. <div id="header-image">
  31. <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="">
  32. </div>
  33. <?php endif; ?>
  34. <div class="container">
  35. <div class="row">
  36. <div class="col-lg-12">
  37. <h1 class="text-center v-center">
  38. <?php if (get_theme_mod( 'unconditional_logo_image' )) : ?>
  39. <a class="brand" href="<?php echo esc_url( home_url( '/' ) ); ?>">
  40. <img src="<?php echo esc_url(get_theme_mod( 'unconditional_logo_image' )); ?>" alt="<?php echo esc_html(get_theme_mod( 'unconditional_logo_alt_text' )); ?>" />
  41. </a>
  42. <?php else : ?>
  43. <a class="brand" href="<?php echo esc_url(home_url( '/' )); ?>" title="<?php bloginfo( 'description' ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
  44. <?php endif; ?>
  45. </h1>
  46. </div>
  47. </div>
  48.  
  49. </div>
  50. <?php if ( get_theme_mod( 'unconditional_home_intro_visibility' ) != 1 ) {
  51. get_template_part( 'parts/cta' );
  52. } ?>
  53. </section>
  54.  
  55. <!--Video Section Ends Here-->
  56. <?php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement