Advertisement
Guest User

index-gaiaproyecto

a guest
Jun 11th, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="container" class="clearfix">
  4. <div id="content">
  5. <?php if (have_posts()) :?>
  6. <?php while (have_posts()) : the_post();?>
  7.  
  8. <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  9.  
  10. <h2><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a></h2>
  11.  
  12. <div class="entry-content">
  13. <?php the_excerpt('<p class="left"></p>');?>
  14. <?php url_to_last_page(); ?>
  15. </div><!--.entry-content-->
  16. </div>
  17. <?php endwhile; endif; ?>
  18.  
  19. </div><!--#content-->
  20.  
  21. <?php get_sidebar(); ?>
  22.  
  23. </div><!--#container-->
  24.  
  25. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement