Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Template: Team Showcase
- */
- get_header(); ?>
- <div id="main-content" class="main-content">
- <div id="primary" class="content-area">
- <div id="content" class="site-content" role="main">
- <?php
- // Start the Loop.
- while ( have_posts() ) : the_post(); ?>
- <article id="post-<?php the_ID(); ?>" class="tshowcase">
- <?php
- //page title
- the_title( '<header class="entry-header"><h1 class="entry-title">', '</h1></header><!-- .entry-header -->' );
- ?>
- <div class="entry-content">
- <?php
- the_content();
- edit_post_link( __( 'Edit', 'twentyfourteen' ), '<span class="edit-link">', '</span>' );
- ?>
- </div><!-- .entry-content -->
- </article><!-- #post-## -->
- <?php endwhile;
- ?>
- </div><!-- #content -->
- </div><!-- #primary -->
- </div><!-- #main-content -->
- <style>
- .single-tshowcase .site:before {
- display:none;
- }
- .single-tshowcase .entry-content, .single-tshowcase h1.entry-title, .single-tshowcase .entry-header {
- max-width:1080px;
- }
- </style>
- <?php
- get_footer();
Advertisement
Add Comment
Please, Sign In to add comment