-
Notifications
You must be signed in to change notification settings - Fork 2
/
archive.php
22 lines (21 loc) · 825 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
<?php get_header();
get_template_part('template-parts/content/content-elements/titles/archive-major-title'); ?>
<div class="main-content pad-tb-60">
<div class="container grid-xl">
<div class="columns">
<div class="column col-9 col-md-12">
<section id="content" role="main">
<?php
get_template_part('template-parts/content/archive/archive-style-1') ;
?>
</section>
</div>
<div class="column col-3 col-md-12">
<aside id="aside" role="complementary">
<?php get_sidebar(); ?>
</aside>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>