-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathauthor.php
More file actions
28 lines (19 loc) · 786 Bytes
/
author.php
File metadata and controls
28 lines (19 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php get_header(); ?>
<section id="main">
<?php get_template_part('lib/sub-header')?>
<div class="container">
<div class="row">
<div id="content" class="site-content col-md-12" role="main">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'post-format/content', get_post_format() ); ?>
<?php endwhile; ?>
<?php themeum_pagination(); ?>
<?php else: ?>
<?php get_template_part( 'post-format/content', 'none' ); ?>
<?php endif; ?>
</div> <!-- #content -->
</div> <!-- .row -->
</div> <!-- .container -->
</section>
<?php get_footer();