-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.php
51 lines (42 loc) · 1.25 KB
/
category.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
<?php get_header(); ?>
<main class="site-main">
<div class="banner-wrapper">
<?php get_template_part('library/banner','maker'); ?>
</div><!-- banner-wrapper -->
<div class="site-content">
<section class="layout">
<div class="primary">
<?php if(have_posts()){ ?>
<?php while(have_posts()) { the_post(); ?>
<article class="hentry">
<div class="featured-image single-image">
<?php the_post_thumbnail(); ?>
</div>
<header class="article-title">
<a href="<?php the_permalink(); ?>">
<h3><?php the_title(); ?></h3>
</a>
</header>
<main class="article-body">
<div class="featured-image single-image">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</a>
</div>
<?php the_excerpt(); ?>
<?php get_template_part('library/post','meta'); ?>
</main>
</article>
<?php } ?>
<?php } ?>
<nav class="pagination">
<?php viradeco_pagination(); ?>
</nav>
</div><!-- primary -->
<div class="secondary">
<?php get_sidebar(); ?>
</div><!-- secondary -->
</section>
</div>
</main>
<?php get_footer(); ?>