50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php get_header(); ?>
|
|
|
|
<div id="primary" class="content-area col-8">
|
|
|
|
<main id="main" class="site-main" role="main">
|
|
<?php if (have_posts()) : ?>
|
|
|
|
<h1 class="archive-title"><?php printf( __( 'Author Archives: %s', 'theme' ), ' <a href="' . esc_url( get_author_posts_url( get_the_author_meta( "ID" ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a>' ); ?></h1>
|
|
|
|
<?php while (have_posts()) : the_post(); ?>
|
|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<header>
|
|
<h2 class="title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
|
|
</header>
|
|
|
|
<div class="post-content">
|
|
<?php echo the_excerpt();?>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
endwhile;
|
|
?>
|
|
<!--BEGIN .navigation -->
|
|
<div class="navigation">
|
|
<?php posts_nav_link( '', __('Previous page','theme'), __('Next page','theme') ); ?>
|
|
</div>
|
|
<?php
|
|
else:
|
|
?>
|
|
<div id="post-0" class="post error404 not-found">
|
|
<header>
|
|
<h1 class="entry-title"><?php _e( 'Not Found', 'theme' ); ?></h1>
|
|
</header>
|
|
<div class="entry-content">
|
|
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'theme' ); ?></p>
|
|
</div><!-- .entry-content -->
|
|
</div><!-- #post-0 -->
|
|
|
|
<?php endif; ?>
|
|
</main>
|
|
|
|
</div>
|
|
<div class="col-4">
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
</div>
|
|
|
|
<?php get_footer();
|