-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
40 lines (23 loc) · 827 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
36
37
38
39
40
<?php
/**
* Master Template. This template will be used to display your blog posts and pages if page.php does not exist.
*
* @package blm_basic
*/
get_header(); ?>
<div id="main">
<div class="wrap">
<section id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content( __( 'Read more', 'blm_basic' ) ); ?>
<?php get_template_part( 'inc/meta' ); ?>
</article>
<?php endwhile; endif; ?>
<?php get_template_part( 'inc/nav' ); ?>
</section><!-- #content -->
<?php get_sidebar(); ?>
</div> <!-- #wrap -->
</div><!-- #main -->
<?php get_footer(); ?>