-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
43 lines (33 loc) · 954 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
38
39
40
41
42
43
<?php get_header(); ?>
<section class="default-header container">
<div class="content">
<header class="section-header">
<?php the_archive_title('<h2>', '</h2>'); ?>
<?php the_archive_description(); ?>
</header>
<div class="clear"></div>
</div>
</section>
<section class="main-archive container">
<div class="content">
<div class="row">
<?php if (have_posts()): ?>
<?php while (have_posts()): ?>
<?php the_post(); ?>
<div class="col-lg-8">
<?php get_template_part('views/content/content', 'home'); ?>
</div>
<?php endwhile; ?>
<?php else: ?>
<div class="col-lg-8">
<?php get_template_part('views/content/content', 'none'); ?>
</div>
<?php endif; ?>
<div class="col-lg-4">
<?php get_sidebar(); ?>
</div>
</div>
<div class="clear"></div>
</div>
</section>
<?php get_footer(); ?>