Advertisement
Guest User

Untitled

a guest
Sep 17th, 2011
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.52 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4.   <div id="contentleft">
  5.     <div class="postarea">      
  6. <?php
  7. query_posts('page_id=114');
  8. while (have_posts()) : the_post();
  9. the_content();
  10. ?>
  11. <div style="clear:both;"></div>
  12. <?php endwhile; ?>
  13.  
  14. <div class="home-boxes">
  15.  
  16.  
  17. <div class="item fl">
  18. <?php query_posts('page_id=116'); ?>
  19. <?php while (have_posts()) : the_post(); ?>
  20. <?php the_title('<h3>','</h3>',true); ?>
  21. <?php the_post_thumbnail('home_box'); ?>
  22. <p><?php echo truncate_str(get_the_content(),100);?>&hellip;</p>
  23. <a href="#" class="readmore">click here</a>
  24. <?php endwhile; ?>
  25. <!--item end --></div>
  26.  
  27.  
  28. <div class="item fl">
  29. <h3>Tools and Resources</h3>
  30. <?php the_post_thumbnail('home_box'); ?>
  31. <p>Our Services focus on creating opportunities for communities to enable themselves to initiate positive changes through our Forum, Tools and Resources, Exhibitions and Conferences.</p>
  32. <a href="#" class="readmore">click here</a>
  33. <!--item end --></div>
  34.  
  35. <div class="item fl">
  36. <h3>Community Marketplace</h3>
  37. <?php the_post_thumbnail('home_box'); ?>
  38. <p>Our Services focus on creating opportunities for communities to enable themselves to initiate positive changes through our Forum, Tools and Resources, Exhibitions and Conferences.</p>
  39. <a href="#" class="readmore">click here</a>
  40. <!--item end --></div>
  41.  
  42.  
  43. <div class="clear"></div>
  44. <!--home-boxes end --></div>
  45.  
  46. <!--postarea end --></div>
  47.    
  48. </div>
  49.   <?php include(TEMPLATEPATH."/sidebar.php");?>
  50. </div>
  51.  
  52. <!-- The main column ends  -->
  53. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement