-
Notifications
You must be signed in to change notification settings - Fork 56
/
archive.php
executable file
·42 lines (38 loc) · 1.12 KB
/
archive.php
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* The template for displaying archive pages
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Bluegreen
*/
?>
<?php get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header hero">
<div class="hero-body">
<div class="container">
<?php the_archive_title( '<h1 class="title is-2 page-title">', '</h1>' ); ?>
<?php the_archive_description( '<div class="subtitle archive-description">', '</div>' ); ?>
</div>
</div>
</header><!-- .page-header -->
<div class="archives wrapper">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'archive' ); ?>
<?php endwhile; ?>
</div>
<div class="section pagination">
<div class="container is-narrow">
<?php the_posts_navigation(); ?>
</div>
</div>
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer();?>