Guest User

Untitled

a guest
Feb 17th, 2011
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.51 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Blog
  4. */
  5. ?>
  6.  
  7. <?php get_header();?>
  8.  
  9.     <section id="content">
  10.         <section id="main">
  11.             <?php
  12.                 query_posts('posts_per_page=4');
  13.                 $c=0;
  14.                 $i=1;
  15.             ?>
  16.            
  17.             <?php if (have_posts()) : ?>
  18.  
  19.                 <?php while (have_posts()) : the_post(); $c++; ?>
  20.                     <article class="post<?php if($i%2 == 0) { echo ' right'; }; $i++; ?>" id="post-<?php the_ID(); ?>">
  21.                         <section class="entry">
  22.                             <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_post_thumbnail(); ?></a>
  23.                         </section>
  24.                         <section class="description">
  25.                             <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  26.                             <time class="post-date" datetime="<?php the_time('c'); ?>"><?php the_time('F j, Y'); ?></time>
  27.                         </section>
  28.                     </article>
  29.  
  30.                 <?php endwhile; ?>
  31.                
  32.                 <?php if( $c < 4 ) : for ($dummy= $c; $dummy < 5; $dummy++;) : ?>
  33.                
  34.                     <article class="post<?php if($i%2 == 0) { echo ' right'; }; $i++; ?>" id="post-<?php the_ID(); ?>">
  35.                         <img src="<?php bloginfo('template_url'); ?>/images/dummy-post.gif" alt="Post coming soon!" />
  36.                     </article><?php endfor;?>
  37.                    
  38.                 <?php endif;?>
  39.  
  40.             <?php endif; ?>
  41.            
  42.             <section id="map">
  43.                 <img src="<?php bloginfo('template_url') ?>/images/interactive-map.jpg" alt="Interactive Map" />
  44.             </section>
  45.         </section>
  46.  
  47. <?php get_sidebar(); ?>
  48.    
  49.     </section>
  50.    
  51. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment