Advertisement
Guest User

EvoLve Pro - no-sidebar.php

a guest
Dec 28th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template Name: One column - no sidebar
  4. *
  5. * @package EvoLve
  6. * @subpackage Template
  7. */
  8.  
  9. get_header();
  10. ?>
  11.  
  12. <!--BEGIN #primary .hfeed-->
  13. <div id="primary" class="hfeed full-width">
  14.  
  15.  
  16.  
  17.  
  18.  
  19. <?php if ( have_posts() ) : ?>
  20. <?php while ( have_posts() ) : the_post(); ?>
  21.  
  22. <!--BEGIN .hentry-->
  23. <div id="post-<?php the_ID(); ?>" class="<?php semantic_entries(); ?>">
  24. <h1 class="entry-title"><?php if ( get_the_title() ){ the_title(); }else{ _e( 'Untitled', 'evolve' ); } ?></h1>
  25.  
  26. <?php if ( current_user_can( 'edit_post', $post->ID ) ): ?>
  27.  
  28. <?php edit_post_link( __( 'EDIT', 'evolve' ), '<span class="edit-page">', '</span>' ); ?>
  29.  
  30.  
  31. <?php endif; ?>
  32.  
  33. <br /><br />
  34.  
  35. <!--BEGIN .entry-content .article-->
  36. <div class="entry-content article">
  37. <?php the_content( __('READ MORE &raquo;', 'evolve' ) ); ?>
  38. <!--END .entry-content .article-->
  39. <div class="clearfix"></div>
  40. </div>
  41.  
  42.  
  43.  
  44. <!-- Auto Discovery Trackbacks
  45. <?php trackback_rdf(); ?>
  46. -->
  47. <!--END .hentry-->
  48. </div>
  49.  
  50. <?php $evl_share_this = evl_get_option('evl_share_this','single'); if (($evl_share_this == "all")) {
  51. evolve_sharethis(); } ?>
  52.  
  53. <?php comments_template( '', true ); ?>
  54.  
  55. <?php endwhile; endif; ?>
  56.  
  57.  
  58.  
  59.  
  60.  
  61. <!--END #primary .hfeed-->
  62. </div>
  63.  
  64.  
  65.  
  66. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement