Guest User

Untitled

a guest
Jan 23rd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <!--Begin Main Content Area-->
  4.  
  5. <div id="main-body">
  6. <!--Begin Left Column-->
  7. <!--End Left Column-->
  8. <!--Begin Main Column-->
  9. <div id="maincol" style="width: <?php echo $content_width; ?>px">
  10. <div class="padding">
  11. <div id="breadcrumbs">
  12. <div class="moduletable">
  13. <span class="breadcrumbs pathway"><a href="<?php bloginfo('url'); ?>" class="pathway"><?php _e('Home'); ?></a>&nbsp;&nbsp;//&nbsp;&nbsp;<?php the_title(); ?></span></div><!-- .moduletable -->
  14. </div><!-- #breadcrumbs -->
  15. <div id="main-content">
  16. <div id="maincontent-block" style="margin-left:0;">
  17. <div id="page">
  18. <div class="main-article">
  19. <div class="buttonheading">
  20. </div>
  21. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  22. <div class="post" id="post-<?php the_ID(); ?>">
  23.  
  24. <div class="single_title_wrapper"><span class="archive_title"><?php the_title(); ?></span></div>
  25. <div class="clr"></div>
  26. <div class="entry">
  27.  
  28. <?php the_content(); ?>
  29.  
  30. <div class="pagination">
  31. <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  32. </div>
  33.  
  34. <div class="clr"></div>
  35.  
  36. </div>
  37. </div>
  38. <?php endwhile; endif; ?>
  39. <?php edit_post_link(_r('Edit this entry.'), '<p>', '</p>'); ?>
  40.  
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. <div class="clr"></div>
  47. </div>
  48. <!--End Main Column-->
  49.  
  50. <?php if (get_option('mixx_right_active') == "true") { ?>
  51.  
  52. <?php get_sidebar('page'); ?>
  53.  
  54. <?php } ?>
  55.  
  56. <div class="clr"></div>
  57. </div>
  58. <!-- Begin Bottom Main Modules -->
  59. <!-- End Bottom Main Modules -->
  60. <!--End Main Content Area-->
  61.  
  62. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment