-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
35 lines (25 loc) · 821 Bytes
/
index.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
<?php get_header(); ?>
<?php get_template_part( 'parts/header', 'banner' ); ?>
<div id="content">
<div id="inner-content" class="container">
<div class="row">
<main id="main" class="col-md-8 col-sm-12" role="main">
<?php
if (have_posts()) : while (have_posts()) : the_post();
get_template_part( 'parts/loop', 'archive' );
endwhile;
else :
get_template_part( 'parts/content', 'missing' );
endif;
?>
</main> <!-- end #main -->
<?php get_sidebar(); ?>
</div><!-- .row -->
<div class="row">
<div class="col-sm-12">
<?php joints_page_navi(); ?>
</div><!-- .col-sm-12 -->
</div><!-- .row -->
</div> <!-- #inner-content -->
</div> <!-- #content -->
<?php get_footer(); ?>