-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (26 loc) · 768 Bytes
/
index.php
File metadata and controls
26 lines (26 loc) · 768 Bytes
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
<?php get_header(); ?>
<div class="wrap" role="document">
<div class="container">
<div class="content">
<div class="content-inner has-sidebar">
<div class="row">
<aside class="sidebar col-md-3" role="complementary">
<?php get_sidebar(); ?>
</aside>
<main class="main col-md-9" role="main">
<?php dw_kido_site_header_mobile(); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php dw_kido_paging_nav(); ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
</main>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>