Advertisement
greencode

Untitled

Jun 22nd, 2012
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <section id="primary" class="full-width">
  2. <div id="content" role="main" class="container_12" >
  3. <div id="archive-itms" class="container_12" >
  4. <?php /* Start the Loop */ ?>
  5. <?php while ( have_posts() ) : the_post(); ?>
  6. <?php if ( $paged < 2 ) : ?>
  7. <?php if( $wp_query->current_post == 0 && !is_paged() ) : ?>
  8. <div id="latest-news-block" class="container_12" >
  9. <div class="grid_8">
  10. <a href="<?php the_permalink() ?>"><?php the_post_thumbnail('large-img'); ?></a>
  11. </div>
  12. <div class="grid_4">
  13. <div class="latest-news-copy">
  14. <p class="date"><?php the_time('j F Y') ?></p>
  15. <h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
  16. <a class="more" href="<?php the_permalink() ?>"><?php _e( 'Read more &#8230;', 'toolbox' ); ?></a>
  17. </div>
  18. </div>
  19. <div class="clearboth"></div>
  20. </div>
  21. <?php else : ?>
  22. <div class="news-block grid_3">
  23. <a href="<?php the_permalink() ?>"><?php the_post_thumbnail('xmedium-img'); ?></a>
  24. <p class="date"><?php the_time('j F Y') ?></p>
  25. <h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
  26. <a class="more" href="<?php the_permalink() ?>"><?php _e( 'Read more &#8230;', 'toolbox' ); ?></a>
  27. </div>
  28. <?php endif; ?>
  29. <?php else : ?>
  30. <div class="news-block grid_3">
  31. <a href="<?php the_permalink() ?>"><?php the_post_thumbnail('xmedium-img'); ?></a>
  32. <p class="date"><?php the_time('j F Y') ?></p>
  33. <h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
  34. <a class="more" href="<?php the_permalink() ?>"><?php _e( 'Read more', 'toolbox' ); ?></a>
  35. </div>
  36. <?php endif; ?>
  37. <?php endwhile; ?>
  38. <div class="clearboth"></div>
  39. </div>
  40.  
  41. <?php /* Display navigation to next/previous pages when applicable */ ?>
  42. <?php if ( $wp_query->max_num_pages > 1 ) : ?>
  43. <nav id="nav-below">
  44. <?php wp_pagenavi(); ?>
  45. </nav><!-- #nav-below -->
  46. <?php endif; ?>
  47.  
  48. </div><!-- #content -->
  49. </section><!-- #primary -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement