cmoreira

team showcase twentyfourteen

May 13th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <?php
  2. /*
  3. Template: Team Showcase
  4. */
  5. get_header(); ?>
  6.  
  7. <div id="main-content" class="main-content">
  8.  
  9.  
  10. <div id="primary" class="content-area">
  11. <div id="content" class="site-content" role="main">
  12.  
  13. <?php
  14. // Start the Loop.
  15. while ( have_posts() ) : the_post(); ?>
  16.  
  17.  
  18. <article id="post-<?php the_ID(); ?>" class="tshowcase">
  19. <?php
  20. //page title
  21. the_title( '<header class="entry-header"><h1 class="entry-title">', '</h1></header><!-- .entry-header -->' );
  22. ?>
  23.  
  24. <div class="entry-content">
  25. <?php
  26. the_content();
  27.  
  28.  
  29. edit_post_link( __( 'Edit', 'twentyfourteen' ), '<span class="edit-link">', '</span>' );
  30. ?>
  31. </div><!-- .entry-content -->
  32. </article><!-- #post-## -->
  33.  
  34.  
  35.  
  36. <?php endwhile;
  37. ?>
  38. </div><!-- #content -->
  39. </div><!-- #primary -->
  40. </div><!-- #main-content -->
  41.  
  42. <style>
  43. .single-tshowcase .site:before {
  44. display:none;
  45. }
  46. .single-tshowcase .entry-content, .single-tshowcase h1.entry-title, .single-tshowcase .entry-header {
  47. max-width:1080px;
  48. }
  49. </style>
  50. <?php
  51. get_footer();
Advertisement
Add Comment
Please, Sign In to add comment