Guest User

Untitled

a guest
Apr 6th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. <?php get_header();
  2. $current_options=get_option('busiprof_theme_options');
  3. ?>
  4. <div class="services_mid_mn">
  5. <div class="container">
  6. <div class="services_top_mn">
  7. <?php if($current_options['home_project_heading_one']!='') {?>
  8. <h2><?php echo esc_html($current_options['home_project_heading_one']); ?>
  9. <?php } ?>
  10. <?php if($current_options['home_project_heading_two']!='') {?>
  11. <span> <?php echo esc_html($current_options['home_project_heading_two']); ?>
  12. <?php } ?>
  13. </span>
  14. </h2>
  15. <?php if($current_options['project_tagline']!='') {?>
  16. <p><?php echo esc_html($current_options['project_tagline']); ?></p>
  17. <?php } ?>
  18. </div>
  19. <div class="row-fluid">
  20. <div class="tab-content" id="myTabContent">
  21. <div id="all" class="tab-pane fade active in">
  22. <div class="row-fluid service_section">
  23. <div class="span3 rec_cols_mn">
  24. <?php if($current_options['project_one_url']!='') {?>
  25. <a href="<?php echo esc_url($current_options['project_one_url']); ?>">
  26. <?php } ?>
  27. <?php if($current_options['project_thumb_one']!='') {?>
  28. <img alt="" src="<?php echo esc_url($current_options['project_thumb_one']); ?>" class="project_feature_img" />
  29. <?php } ?></a>
  30. <?php if($current_options['project_one_url']!='') {?>
  31. <h3><a href="<?php echo esc_url($current_options['project_one_url']); ?>">
  32. <?php } ?>
  33. <?php if($current_options['project_title_one']!='') {?>
  34. <?php echo esc_html($current_options['project_title_one']); ?></a>
  35. <?php } ?>
  36. </h3>
  37. <?php if($current_options['project_text_one']!='') {?>
  38. <p><?php echo esc_html($current_options['project_text_one']); ?></p>
  39. <?php } ?>
  40. </div>
  41. <div class="span3 rec_cols_mn">
  42. <?php if($current_options['project_two_url']!='') {?>
  43. <a href="<?php echo esc_url($current_options['project_two_url']); ?>">
  44. <?php } ?>
  45. <?php if($current_options['project_thumb_two']!='') {?>
  46. <img alt="" src="<?php echo esc_url($current_options['project_thumb_two']); ?>" class="project_feature_img" />
  47. <?php } ?></a>
  48. <?php if($current_options['project_two_url']!='') {?>
  49. <h3><a href="<?php echo esc_url($current_options['project_two_url']); ?>">
  50. <?php } ?>
  51. <?php if($current_options['project_title_two']!='') {?>
  52. <?php echo esc_html($current_options['project_title_two']); ?></a>
  53. <?php } ?>
  54. </h3>
  55. <?php if($current_options['project_text_two']!='') {?>
  56. <p><?php echo esc_html($current_options['project_text_two']); ?></p>
  57. <?php } ?>
  58. </div>
  59. <div class="span3 rec_cols_mn">
  60. <?php if($current_options['project_three_url']!='') {?>
  61. <a href="<?php echo esc_url($current_options['project_three_url']); ?>">
  62. <?php } ?>
  63. <?php if($current_options['project_thumb_three']!='') {?>
  64. <img alt="" src="<?php echo esc_url($current_options['project_thumb_three']); ?>" class="project_feature_img" />
  65. <?php } ?></a>
  66. <?php if($current_options['project_three_url']!='') {?>
  67. <h3><a href="<?php echo esc_url($current_options['project_three_url']); ?>">
  68. <?php } ?>
  69. <?php if($current_options['project_title_three']!='') {?>
  70. <?php echo esc_html($current_options['project_title_three']); ?></a>
  71. <?php } ?>
  72. </h3>
  73. <?php if($current_options['project_text_three']!='') {?>
  74. <p><?php echo esc_html($current_options['project_text_three']); ?></p>
  75. <?php } ?>
  76. </div>
  77. <div class="span3 rec_cols_mn">
  78. <?php if($current_options['project_four_url']!='') {?>
  79. <a href="<?php echo esc_url($current_options['project_four_url']); ?>">
  80. <?php } ?>
  81. <?php if($current_options['project_thumb_four']!='') {?>
  82. <img alt="" src="<?php echo esc_url($current_options['project_thumb_four']); ?>" class="project_feature_img" />
  83. <?php } ?></a>
  84. <?php if($current_options['project_four_url']!='') {?>
  85. <h3><a href="<?php echo esc_url($current_options['project_four_url']); ?>">
  86. <?php } ?>
  87. <?php if($current_options['project_title_four']!='') {?>
  88. <?php echo esc_html($current_options['project_title_four']); ?></a>
  89. <?php } ?>
  90. </h3>
  91. <?php if($current_options['project_text_four']!='') {?>
  92. <p><?php echo esc_html($current_options['project_text_four']); ?></p>
  93. <?php } ?>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
Advertisement
Add Comment
Please, Sign In to add comment