Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Full Width Page
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7.  
  8. <div id="content">
  9.  
  10. <div class="post-single">
  11.  
  12. <!-- Section: Category list right at top -->
  13. <h3 id="post-single-category"><?php global $post; $slug = get_post( $post )->post_name; echo $slug ?></h3>
  14.  
  15. <!-- Section: Featured Image -->
  16. <!-- If has featured image, then show it, else show nothing -->
  17. <?php if ( '' != get_the_post_thumbnail() ) {echo '<div class="post-featured-image">';the_post_thumbnail(); echo '</div>';} else {echo '';}; ?>
  18.  
  19. <!-- Start left column -->
  20. <div class="post-single-left full-width">
  21.  
  22. <div class="post-entry">
  23.  
  24. <!-- Section: Title and META -->
  25. <h1><?php the_title(); ?></h1>
  26.  
  27. <!-- Section: Post content -->
  28. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  29. <?php the_content( __('<p>Read the rest of this entry &raquo;</p>', 'svelte') ); ?>
  30. <div class="clear"></div><!-- .clear -->
  31.  
  32. </div><!-- /.post-entry -->
  33.  
  34. <?php endwhile; else: ?>
  35.  
  36. <p><?php _e('Sorry, no posts matched your criteria.', 'svelte'); ?></p>
  37.  
  38. <?php endif; ?>
  39.  
  40. <div class="clear"></div><!-- .clear -->
  41.  
  42. </div><!-- .post-single-left -->
  43.  
  44. <div class="clear"></div>
  45.  
  46. </div><!-- /.post-single -->
  47.  
  48. </div><!-- /#content -->
  49.  
  50. <?php include("incl/keyboard-scrolling-posts.php"); ?>
  51. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement