Created
February 5, 2015 06:14
-
-
Save carolinan/563abeb338c68e800f86 to your computer and use it in GitHub Desktop.
content-portfolio-single
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package aaron | |
*/ | |
?> | |
<article id="post-<?php the_ID(); ?>" <?php post_class('aaron-border'); ?>> | |
<header class="entry-header"> | |
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> | |
</header><!-- .entry-header --> | |
<div class="entry-content"> | |
<?php | |
if ( has_post_thumbnail()){ | |
the_post_thumbnail(); | |
} | |
the_content(); | |
wp_link_pages( array( | |
'before' => '<div class="page-links">' . __( 'Pages:', 'aaron' ), | |
'after' => '</div>', | |
) ); | |
?> | |
</div><!-- .entry-content --> | |
</article><!-- #post-## --> | |
<?php aaron_portfolio_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment