forked from InfoAmazonia/infoamazonia-wptheme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
archive-blog-post.php
40 lines (32 loc) · 919 Bytes
/
archive-blog-post.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
<?php get_header(); ?>
<section id="content">
<div id="blog-archive" class="gray-page archive-page">
<?php if(have_posts()) : ?>
<section id="blog-posts" class="blog-loop-section archive-list">
<div class="page-header">
<div class="container">
<div class="twelve columns">
<h1><?php _e('Blog', 'infoamazonia'); ?></h1>
</div>
</div>
</div>
<div class="container">
<?php get_template_part('loop', 'blog-post'); ?>
<div class="four columns">
<div class="row sources sidebar-item">
<h3><?php _e('Categories', 'infoamazonia'); ?></h3>
<ul>
<?php wp_list_categories(array(
'taxonomy' => 'blog-category',
'title_li' => ''
)); ?>
</ul>
</div>
</div>
</div>
</section>
<?php endif; ?>
</div>
</section>
<?php get_template_part('section', 'main-widget'); ?>
<?php get_footer(); ?>