-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63b8724
commit f0ff420
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
/** | ||
* The template for displaying archive pages | ||
* | ||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/ | ||
*/ | ||
get_header(); | ||
?> | ||
|
||
<div class="container"> | ||
<main class="content col-md-9"> | ||
<div class="posts"> | ||
<?php while ( have_posts() ) : the_post(); ?> | ||
<?php get_template_part( 'template-parts/content/post' ); ?> | ||
<?php endwhile; ?> | ||
</div> | ||
<?php get_template_part( 'template-parts/content/pagination' ); ?> | ||
</main> | ||
</div> | ||
|
||
<?php get_footer(); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters