Guest User

Untitled

a guest
Oct 3rd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.25 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  3. <head>
  4. <!--[if IE]>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <![endif]-->
  7.  
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  10. <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
  11. <link rel="profile" href="http://gmpg.org/xfn/11" />
  12. <?php $wallstreet_pro_options=theme_data_setup();
  13. $current_options = wp_parse_args( get_option( 'wallstreet_pro_options', array() ), $wallstreet_pro_options ); ?>
  14. <?php if($current_options['upload_image_favicon']!=''){ ?>
  15. <link rel="shortcut icon" href="<?php echo $current_options['upload_image_favicon']; ?>" />
  16. <?php } wp_head(); ?>
  17. </head>
  18. <body <?php body_class(); ?>>
  19. <!--Header Top Layer Section-->
  20. <div class="header-top-area">
  21. <div class="container">
  22. <div class="row">
  23. <div class="col-sm-6">
  24. <?php if($current_options['header_social_media_enabled']==true) { ?>
  25. <ul class="head-contact-social">
  26. <?php
  27. if($current_options['social_media_twitter_link']!='') { ?>
  28. <li><a href="<?php echo esc_url($current_options['social_media_twitter_link']); ?>" <?php if($current_options['twitter_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-twitter"></i></a></li>
  29. <?php } if($current_options['social_media_facebook_link']!='') { ?>
  30. <li><a href="<?php echo esc_url($current_options['social_media_facebook_link']); ?>" <?php if($current_options['facebook_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-facebook"></i></a></li>
  31. <?php } if($current_options['social_media_googleplus_link']!='') { ?>
  32. <li><a href="<?php echo esc_url($current_options['social_media_googleplus_link']); ?>" <?php if($current_options['google_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-google-plus"></i></a></li>
  33. <?php } if($current_options['social_media_linkedin_link']!='') { ?>
  34. <li><a href="<?php echo esc_url($current_options['social_media_linkedin_link']); ?>" <?php if($current_options['linkdin_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-linkedin"></i></a></li>
  35. <?php } if($current_options['social_media_pinterest_link']!='') { ?>
  36. <li><a href="<?php echo esc_url($current_options['social_media_pinterest_link']); ?>" <?php if($current_options['pintrest_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-pinterest"></i></a></li>
  37. <?php } if($current_options['social_media_youtube_link']!='') { ?>
  38. <li><a href="<?php echo esc_url($current_options['social_media_youtube_link']); ?>" <?php if($current_options['youtube_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-youtube"></i></a></li>
  39. <?php } if($current_options['social_media_skype_link']!='') { ?>
  40. <li><a href="<?php echo esc_url($current_options['social_media_skype_link']); ?>" <?php if($current_options['skype_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-skype"></i></a></li>
  41. <?php } if($current_options['social_media_rssfeed_link']!='') { ?>
  42. <li><a href="<?php echo esc_url($current_options['social_media_rssfeed_link']); ?>" <?php if($current_options['rss_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-rss"></i></a></li>
  43. <?php } if($current_options['social_media_wordpress_link']!='') { ?>
  44. <li><a href="<?php echo esc_url($current_options['social_media_wordpress_link']); ?>" <?php if($current_options['wp_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-wordpress"></i></a></li>
  45. <?php } if($current_options['social_media_dropbox_link']!='') { ?>
  46. <li><a href="<?php echo esc_url($current_options['social_media_dropbox_link']); ?>" <?php if($current_options['db_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-dropbox"></i></a></li>
  47. <?php } if($current_options['social_media_instagram_link']!='') { ?>
  48. <li><a href="<?php echo esc_url($current_options['social_media_instagram_link']); ?>" <?php if($current_options['insta_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-instagram"></i></a></li>
  49. <?php } if($current_options['social_media_vimeo_link']!='') { ?>
  50. <li><a href="<?php echo esc_url($current_options['social_media_vimeo_link']); ?>" <?php if($current_options['vimeo_link_new_tab']==true){ echo "target='_blank'"; } ?> ><i class="fa fa-vimeo"></i></a></li>
  51. <?php } ?>
  52. </ul>
  53. <?php } ?>
  54. </div>
  55.  
  56. <div class="col-sm-6">
  57. <?php if($current_options['contact_header_settings']=="on") { ?>
  58. <ul class="head-contact-info">
  59. <?php if($current_options['contact_phone_number_one']!=''){ ?>
  60. <li><i class="fa fa-phone-square"></i><a href="tel:<?php echo $current_options['contact_phone_number_one']; ?>">+<?php echo $current_options['contact_phone_number_one']; ?></a></li>
  61.  
  62. <?php } ?>
  63. <?php if($current_options['contact_email_number_one']!=''){ ?>
  64. <li><i class="fa fa-envelope"></i><a href="mailto:<?php echo $current_options['contact_email_number_one']; ?>"><?php echo $current_options['contact_email_number_one']; ?></a></li>
  65. <?php } ?>
  66. </ul>
  67. <?php } ?>
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. <!--/Header Top Layer Section. This is a test comment-->
  73.  
  74. <!--Header Logo & Menus-->
  75. <div class="navbar navbar-wrapper navbar-inverse navbar-static-top" role="navigation">
  76. <div class="container">
  77.  
  78. <!-- Brand and toggle get grouped for better mobile display -->
  79. <div class="navbar-header">
  80. <!-- logo -->
  81. <a class="navbar-brand" href="<?php echo home_url( '/' ); ?>">
  82. <?php
  83. if($current_options['text_title'] ==true)
  84. { echo "<div class=wallstreet_title_head>" . get_bloginfo( ). "</div>"; }
  85. else if($current_options['upload_image_logo']!='')
  86. { ?>
  87. <img src="<?php echo $current_options['upload_image_logo']; ?>" style="height:<?php if($current_options['height']!='') { echo $current_options['height']; } else { "50"; } ?>px; width:<?php if($current_options['width']!='') { echo $current_options['width']; } else { "250"; } ?>px;" alt="logo" />
  88. <?php } else { ?>
  89. <img src="<?php echo WEBRITI_TEMPLATE_DIR_URI; ?>/images/logo.png" class="img-responsive" alt="logo" />
  90. <?php } ?>
  91. </a>
  92. </a><!-- /logo -->
  93. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
  94. <span class="sr-only">Toggle navigation</span>
  95. <span class="icon-bar"></span>
  96. <span class="icon-bar"></span>
  97. <span class="icon-bar"></span>
  98. </button>
  99. </div>
  100. <!-- Collect the nav links, forms, and other content for toggling -->
  101. <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
  102. <?php
  103. wp_nav_menu( array(
  104. 'theme_location' => 'primary',
  105. 'container' => 'nav-collapse collapse navbar-inverse-collapse',
  106. 'menu_class' => 'nav navbar-nav navbar-right',
  107. 'fallback_cb' => 'webriti_fallback_page_menu',
  108. 'walker' => new webriti_nav_walker()
  109. )
  110. );
  111. ?>
  112. </div><!-- /.navbar-collapse -->
  113. </nav>
  114. </div>
  115. </div>
Add Comment
Please, Sign In to add comment