Sha256: a220bd36da515600181428de6af9b844479b263b35547ab0f38e68ad68fff66c

Contents?: true

Size: 825 Bytes

Versions: 5

Compression:

Stored size: 825 Bytes

Contents

<?php get_header(); ?>

	<div class="content-wrap">
		<div class="content content-area">
			<?php if ( have_posts() ) : ?>

				<header class="page-header">
					<h1 class="page-title">
						<?php
							the_post();
							printf( __( 'All posts by %s', '<%= theme_id %>' ), sprintf(
									'<span class="vcard"><a class="url fn n" href="%1$s" rel="me">%2$s</a></span>',
									esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
									get_the_author()
							) );
						?>
					</h1>
				</header>

				<?php rewind_posts(); ?>

				<?php while ( have_posts() ) : the_post(); ?>

					<?php get_template_part( 'content', get_post_format() ); ?>

				<?php endwhile;	?>

			<?php else : ?>

				<?php get_template_part( 'content', 'none' ); ?>

			<?php endif; ?>
		</div>
	</div>

<?php get_footer(); ?>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
marv-0.2.5 layouts/default/templates/author.php.erb
marv-0.2.4 layouts/default/templates/author.php.erb
marv-0.2.3 layouts/default/templates/author.php.erb
marv-0.2.2 layouts/default/templates/author.php.erb
marv-0.2.1 layouts/default/templates/author.php.erb