Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php get_header(); ?>
- <div class="container">
- <div class="blog-header">
- <h1 class="blog-title">The Bootstrap Blog</h1>
- <p class="lead blog-description">The official example template of creating a blog with Bootstrap.</p>
- </div>
- <div class="row">
- <div class="col-sm-8 blog-main">
- <?php if (have_posts()) : while(have_posts()) : the_post(); ?>
- <div class="blog-post">
- <h2 class="blog-post-title"><a href="<?php the_permalink();?>"><?php the_title(); ?></a></h2>
- <p class="blog-post-meta">Posted on <?php the_time('F jS, Y'); ?> by <a href="#"><?php the_author(); ?></a></p>
- <?php the_content(__('Read more...')); ?>
- </div><!-- /.blog-post -->
- <?php endwhile; endif; ?>
- </div><!-- /.blog-main -->
- <?php get_sidebar(); ?>
- </div><!-- /.row -->
- </div><!-- /.container -->
- <?php get_footer(); ?>
Advertisement