-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxonomy.php
77 lines (65 loc) · 2.42 KB
/
taxonomy.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/**
* The template for displaying Archive pages.
*
* Used to display archive-type pages if nothing more specific matches a query.
* For example, puts together date-based pages if no date.php file exists.
*
* If you'd like to further customize these archive views, you may create a
* new template file for each one. For example, tag.php (Tag archives),
* category.php (Category archives), author.php (Author archives), etc.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Septera
*
*/
get_header(); ?>
<!--style to fix alignment of people-->
<style>
article{
position: relative;
width: 445px;
height: 606px;
padding: 10px;
}
</style>
<div id="container" class="<?php echo septera_get_layout_class(); ?>">
<main id="main" role="main" class="main">
<?php cryout_before_content_hook(); ?>
<?php if ( have_posts() ) : ?>
<header class="page-header pad-container" <?php cryout_schema_microdata( 'element' ); ?>>
<?php
// Load custom header if author
if (is_author()) {
get_template_part( 'content/author-bio' );
// Default for all archives
} else {
the_archive_title( '<h1 class="page-title" ' . cryout_schema_microdata('entry-title', 0) . '>', '</h1>' );
the_archive_description( '<div class="taxonomy-description">', '</div>' );
}
?>
</header><!-- .page-header -->
<div id="content-masonry" class="content-masonry " <?php cryout_schema_microdata( 'blog' ); ?>>
<?php
while ( have_posts() ) : the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content/content', get_post_format() );
endwhile;
?>
</div><!--content-masonry-->
<!--not really nessessary-->
<?php septera_pagination();
// If no content, include the "No posts found" template.
else :
get_template_part( 'content/content', 'notfound' );
endif;
cryout_after_content_hook(); ?>
</main><!-- #main -->
<?php septera_get_sidebar(); ?>
</div><!-- #container -->
<?php get_footer(); ?>