| 1 | <?php
|
|---|
| 2 | /**
|
|---|
| 3 | * Template Name: Author Page
|
|---|
| 4 | *
|
|---|
| 5 | * @package WordPress
|
|---|
| 6 | * @subpackage Twenty_Fourteen
|
|---|
| 7 | */
|
|---|
| 8 |
|
|---|
| 9 | get_header(); ?>
|
|---|
| 10 |
|
|---|
| 11 | <div id="primary" class="content-area">
|
|---|
| 12 | <div id="content" class="site-content" role="main">
|
|---|
| 13 | <?php
|
|---|
| 14 | while ( have_posts() ) : the_post(); ?>
|
|---|
| 15 |
|
|---|
| 16 | <?php get_template_part( 'content', 'page' ); ?>
|
|---|
| 17 |
|
|---|
| 18 | <?php twentyforteen_author_boxes(); ?>
|
|---|
| 19 |
|
|---|
| 20 | <?php comments_template( '', true ); ?>
|
|---|
| 21 |
|
|---|
| 22 | <?php endwhile; ?>
|
|---|
| 23 |
|
|---|
| 24 | </div><!-- #content .site-content -->
|
|---|
| 25 | </div><!-- #primary .content-area -->
|
|---|
| 26 |
|
|---|
| 27 | <?php get_sidebar( 'content' ); ?>
|
|---|
| 28 |
|
|---|
| 29 | <?php get_sidebar(); ?>
|
|---|
| 30 |
|
|---|
| 31 | <?php get_footer(); ?>
|
|---|