wingman007

WordPressTheme_index.php

Jun 17th, 2015
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php get_header(); ?>
  2.  
  3.     <div class="container">
  4.  
  5.       <div class="blog-header">
  6.         <h1 class="blog-title">The Bootstrap Blog</h1>
  7.         <p class="lead blog-description">The official example template of creating a blog with Bootstrap.</p>
  8.       </div>
  9.  
  10.       <div class="row">
  11.  
  12.         <div class="col-sm-8 blog-main">
  13.  
  14.             <?php if (have_posts()) : while(have_posts()) : the_post(); ?>
  15.            
  16.           <div class="blog-post">
  17.               <h2 class="blog-post-title"><a href="<?php the_permalink();?>"><?php the_title(); ?></a></h2>
  18.               <p class="blog-post-meta">Posted on <?php the_time('F jS, Y'); ?> by <a href="#"><?php the_author(); ?></a></p>
  19.  
  20.               <?php the_content(__('Read more...')); ?>
  21.           </div><!-- /.blog-post -->          
  22.            
  23.             <?php endwhile; endif; ?>
  24.            
  25.  
  26.         </div><!-- /.blog-main -->
  27.  
  28. <?php get_sidebar(); ?>
  29.  
  30.       </div><!-- /.row -->
  31.  
  32.     </div><!-- /.container -->
  33. <?php get_footer(); ?>
Advertisement