-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharchive.php
More file actions
33 lines (30 loc) · 716 Bytes
/
archive.php
File metadata and controls
33 lines (30 loc) · 716 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
29
30
31
32
33
<?php
/**
* The template for displaying archive pages.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Pan-Bootstrap
* @since 0.1.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
get_header(); ?>
<div class="wrapper">
<main>
<div class="container">
<div class="row">
<div class="col-12 col-lg-8">
<section>
<h1 class="page-header"><?php _e( 'Archives', 'pan-bootstrap' ); ?></h1>
<?php get_template_part('loop'); ?>
<?php get_template_part('pagination'); ?>
</section>
</div><!-- /.col-lg-8 -->
<?php get_sidebar(); ?>
</div><!-- /.row -->
</div><!-- /.container -->
</main>
</div>
<?php get_footer(); ?>