Advertisement
Guest User

Untitled

a guest
Jan 19th, 2014
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The Template for displaying blog.
  4.  *
  5.  */
  6.  
  7. get_header(); ?>
  8.  
  9. <article id="content" class="clearfix">
  10.     <header id="begin-of-content">
  11. <?php putRevSlider("frontpage","homepage") ?>        
  12.     </header>
  13.  
  14.  
  15.     <div id="col-mask">
  16.  
  17.         <div id="post-list">
  18.  
  19.             <?php
  20.             /* Run the loop to output the post.
  21.              * If you want to overload this in a child theme then include a file
  22.              * called loop-single.php and that will be used instead.
  23.              */
  24.             get_template_part( 'loop' );
  25.             ?>
  26.             <?php a13_blog_nav(); ?>
  27.  
  28.         </div>
  29.  
  30.         <?php get_sidebar(); ?>
  31.  
  32.     </div>
  33.  
  34. </article>
  35.  
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement