Guest User

Untitled

a guest
Oct 21st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4.  
  5. <div id="destaques">
  6.  
  7. <?php echo get_first_image() ?>
  8. </div>
  9.  
  10. <div id="posts">
  11. <?php if (have_posts()) : ?>
  12. <?php while (have_posts()) : the_post(); ?>
  13. <div class="post" id="post-<?php the_ID(); ?>">
  14. <ul class="info">
  15. <li class="left">
  16. <h2>
  17. <?php the_time('j') ?>
  18. </h2>
  19. <span>
  20. <?php the_time('M') ?>
  21. </span></li>
  22. <li class="right">
  23. <h1><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark">
  24. <?php the_title(); ?>
  25. </a></h1>
  26. <ul class="details">
  27. <li class="author">Artigo escrito por
  28. <?php the_author() ?>
  29. </li>
  30. <li class="comments">Com
  31. <?php comments_popup_link('0 comentarios', '1 comentario', '% comentarios'); ?>
  32. </li>
  33. </ul>
  34. </li>
  35. </ul>
  36. <div class="article">
  37. <?php the_content('<span class="readmore">... Continuar lendo o resto da materia!</span>'); ?>
  38. </div>
  39. </div>
  40. <?php endwhile; ?>
  41. <?php endif; ?>
  42. <div id="navigation">
  43. <div class="l">
  44. <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
  45. </div>
  46. <div class="r">
  47.  
  48. </div>
  49. </div>
  50. </div>
  51. <?php include (TEMPLATEPATH . '/sidebar2.php'); ?>
  52. <h6 class="conbot"></h6>
  53. </div>
  54. <?php get_sidebar(); ?>
  55. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment