Advertisement
Guest User

single.php

a guest
Mar 9th, 2014
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  3. <div class="jumbotron" style="background-image: url(<?php echo $header_bg; ?>)"></div>
  4. <?php get_template_part( 'headline' ); ?>
  5.  
  6. <!-- Preceding Copy -->
  7. <?php foreach (array_values($pre_copy) as $num => $block): if(!empty($block)): ?>
  8. <div class="row portfolio-copy">
  9. <div class="col-sm-1 col-sm-push-1 number"><?php echo $num += 1; ?></div>
  10. <div class="col-sm-6 col-sm-push-2"><?php echo $block; ?></div>
  11. </div>
  12. <?php endif; endforeach; ?>
  13.  
  14. <!-- Preceding Img -->
  15. <?php foreach ($pre_imgs as $url): if(!empty($url)): ?>
  16. <div class="row portfolio" style="background-image: url(<?php echo $url; ?>)"></div>
  17. <?php endif; endforeach; ?>
  18.  
  19. <!-- Pull Quote -->
  20. <div class="row pull-quote" style="background-image: url(<?php echo $quote_bg; ?>)">
  21. <div class="circle">
  22. <hr style="background: <?php echo $post_color; ?>">
  23. <h3><?php echo $quote_copy ?></h3>
  24. <hr style="background: <?php echo $post_color; ?>">
  25. </div>
  26. </div>
  27.  
  28. <!-- Subsequent Copy -->
  29. <?php foreach (array_values($sub_copy) as $num => $block): if(!empty($block)): ?>
  30. <div class="row portfolio-copy">
  31. <div class="col-sm-1 col-sm-push-1 number"><?php $num += 1; echo count($pre_num) + $num; ?></div>
  32. <div class="col-sm-6 col-sm-push-2"><?php echo $block; ?></div>
  33. </div>
  34. <?php endif; endforeach; ?>
  35.  
  36. <!-- Subsequent Img -->
  37. <?php foreach ($sub_imgs as $url): if(!empty($url)): ?>
  38. <div class="row portfolio-img" style="background-image: url(<?php echo $url; ?>)"></div>
  39. <?php endif; endforeach; ?>
  40.  
  41. <!-- Social Media Icons -->
  42. <div class="row social" style="background: <?php echo $post_color; ?>">
  43. <h3>Share This Article</h3>
  44. </div>
  45. <?php endwhile; endif; ?>
  46. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement