<?php /** * The default template for displaying content, overridden by content-_____.php templates. * * @package Reddle * @since Reddle 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( has_post_thumbnail() ) : ?> <div class="entry-image"> <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'reddle' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"> <?php the_post_thumbnail( 'large', array( 'class' => 'featured-image' ) ); ?> </a> </div> <?php endif; ?> <header class="entry-header"> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <?php reddle_posted_on(); ?> </div><!-- .entry-meta --> <?php endif; ?> <?php if ( ( comments_open() || ( '0' != get_comments_number() && ! comments_open() ) ) && ! post_password_required() ) : ?> <p class="comments-link"><?php comments_popup_link( '<span class="no-reply">' . __( '0', 'reddle' ) . '</span>', __( '1', 'reddle' ), __( '%', 'reddle' ) ); ?></p> <?php endif; ?> </header><!-- .entry-header --> <?php if ( is_search() ) : // Only display Excerpts for Search ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'reddle' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'reddle' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <?php // translators: used between list items, there is a space after the comma $categories_list = get_the_category_list( __( ', ', 'reddle' ) ); // translators: used between list items, there is a space after the comma $tags_list = get_the_tag_list( '', __( ', ', 'reddle' ) ); // Check to see if there is a need for an article footer if ( 'post' == get_post_type() || $categories_list && reddle_categorized_blog() ) : ?> <footer class="entry-meta"> <?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?> <?php if ( $categories_list && reddle_categorized_blog() ) : ?> <p class="cat-links taxonomy-links"> <?php printf( __( 'Posted in %1$s', 'reddle' ), $categories_list ); ?> </p> <?php endif; // End if categories ?> <?php if ( $tags_list && ! is_wp_error( $tags_list ) ) : ?> <p class="tag-links taxonomy-links"> <?php printf( __( 'Tagged %1$s', 'reddle' ), $tags_list ); ?> </p> <?php endif; // End if $tags_list ?> <?php endif; // End if 'post' == get_post_type() ?> <p class="date-link"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'reddle' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark" class="permalink"><?php /* translators: use day_month to reverse the sequence of day and month */ if ( __( 'month_day', 'reddle' ) === 'day_month' ) : ?><span class="day upper"><?php the_time( 'd' ); ?></span><span class="sep">·</span><span class="month lower"><?php the_time( 'M' ); ?></span><?php else : ?><span class="month upper"><?php the_time( 'M' ); ?></span><span class="sep">·</span><span class="day lower"><?php the_time( 'd' ); ?></span><?php endif; ?></a></p> <?php edit_post_link( __( 'Edit', 'reddle' ), '<p class="edit-link">', '</p>' ); ?> </footer><!-- #entry-meta --> <?php endif; // check to see if there is a need for an article footer ?> </article><!-- #post-## -->