File: /home/mmickelson/martyknows.com/wp-content/themes/bueno/templates/format-aside.php
<?php
/**
* The template part for displaying aside post format.
*
* @package bueno
*/
?>
<!--BEGIN .hentry -->
<article id="post-<?php the_ID(); ?>" <?php post_class('post__holder'); ?>>
<?php get_template_part('templates/post-meta'); ?>
<!-- Post Content -->
<div class="post_content">
<?php the_content( __( 'Continue reading', 'bueno' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'bueno' ), 'after' => '</div>' ) ); ?>
<!--// Post Content -->
</div>
<?php if ( ( has_tag() ) && ( is_singular() ) ) { ?>
<footer class="post-footer">
<i class="icon-tags"></i> <?php the_tags('Tags: ', ' ', ''); ?>
</footer>
<?php } ?>
<!--END .hentry-->
</article>
<?php if ( is_single() && get_the_author_meta( 'description' ) ) {
get_template_part( 'templates/post-author-bio' );
} ?>