Sha256: 104470fb39ebfb87b49682f9772ab1e51216045f72c481cca85c218eb8a2e9d4

Contents?: true

Size: 1.2 KB

Versions: 3

Compression:

Stored size: 1.2 KB

Contents

<?php
/**
 * The template for displaying posts in the Status post format
 *
 * @category  Theme
 * @package   [starter]
 * @author    [Your Name]
 * @copyright 2012 [Your Name]
 */
?>

	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
		<div class="entry-header">
			<?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'starter_status_avatar', '48' ) ); ?>
			<header>
				<h1 class="entry-title"><?php the_author(); ?></h1>
				<h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'starter' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a></h2>
			</header>
		</div>

		<div class="entry-content">
			<?php the_content( __( 'Continue reading', 'starter' ) ); ?>
		</div>

		<footer class="entry-meta">
			<?php if ( comments_open() ) : ?>
			<div class="comments-link">
				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'starter' ) . '</span>', __( '1 Reply', 'starter' ), __( '% Replies', 'starter' ) ); ?>
			</div>
			<?php endif; // comments_open() ?>
			<?php edit_post_link( __( 'Edit', 'starter' ), '<span class="edit-link">', '</span>' ); ?>
		</footer>
	</article>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wordpress-starter-0.3 templates/project/content-status.php
wordpress-starter-0.2 templates/project/content-status.php
wordpress-starter-0.1 templates/starter/content-status.php