-
Notifications
You must be signed in to change notification settings - Fork 2
/
archive.php
executable file
·37 lines (21 loc) · 942 Bytes
/
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
<?php get_header(); ?>
<div id="content" class="archive-page">
<div id="inner-content" class="grid-container">
<main id="main" class="grid-x grid-margin-x" role="main">
<header class="archive-header">
<h1 class="page-title"> <?php single_term_title(); ?> </h1>
<?php the_archive_description('<div class="taxonomy-description">', '</div>'); ?>
</header>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!-- To see additional archive styles, visit the /parts directory -->
<?php get_template_part('assets/src/php/page-components/loop', 'archive'); ?>
<?php endwhile; ?>
<?php insert_page_navigation(); ?>
<?php else : ?>
<?php get_template_part('assets/src/php/page-components/content', 'missing'); ?>
<?php endif; ?>
</main> <!-- end #main -->
<?php // get_sidebar(); ?>
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer(); ?>