-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
29 lines (28 loc) · 911 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
<?php
/**
* Description: Default Index template to display loop of blog posts
*
* @package WordPress
* @subpackage BootstrapWP
*/
get_header(); ?>
<?php leonardofs_hero('') ?>
<div class="container">
<div class="row offset2 span7 content">
<ul class="listing">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li <?php post_class(); ?>>
<a href="<?php the_permalink();?>", title="<?php the_title();?>">
<?php the_title();?>
</a>
<span class="pull-right">
<?php the_date(); ?>
</span>
</li><!-- /.post_class -->
<?php endwhile; endif; ?>
<!--
<?php bootstrapwp_content_nav('nav-below');?>-->
</ul>
</div>
</div>
<?php get_footer(); ?>