-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·29 lines (29 loc) · 995 Bytes
/
index.php
File metadata and controls
executable file
·29 lines (29 loc) · 995 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
27
28
29
<?php get_header(); ?>
<?php wpbp_content_before(); ?>
<section id="content">
<div class="<?php wpbp_container_class(); ?>">
<div class="<?php wpbp_option( 'main_class' ); ?>">
<?php wpbp_main_before(); ?>
<section id="main" role="main">
<?php wpbp_main_inside_before(); ?>
<h1 class="page-title">
<?php _e( 'Latest Posts', 'wpbp' ); ?>
</h1>
<?php get_template_part( 'loop', 'index' ); ?>
<?php wpbp_main_inside_after(); ?>
</section>
<?php wpbp_main_after(); ?>
</div>
<div class="<?php wpbp_option( 'sidebar_class' ); ?>">
<?php wpbp_sidebar_before(); ?>
<aside id="sidebar" role="complementary">
<?php wpbp_sidebar_inside_before(); ?>
<?php get_sidebar(); ?>
<?php wpbp_sidebar_inside_after(); ?>
</aside>
<?php wpbp_sidebar_after(); ?>
</div>
</div>
</section>
<?php wpbp_content_after(); ?>
<?php get_footer(); ?>