content-quote.php 801 B

12345678910111213141516171819202122232425262728293031
  1. <div class="post-meta">
  2. <span class="post-date"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_time(get_option('date_format')); ?></a></span>
  3. <?php if( is_sticky() && !has_post_thumbnail() ) { ?>
  4. <span class="date-sep"> / </span>
  5. <?php _e('Sticky', 'hemingway'); ?>
  6. <?php } ?>
  7. <?php if ( current_user_can( 'manage_options' ) ) { ?>
  8. <span class="date-sep"> / </span>
  9. <?php edit_post_link(__('Edit', 'hemingway')); ?>
  10. <?php } ?>
  11. </div>
  12. <div class="post-content">
  13. <?php the_content(); ?>
  14. <?php wp_link_pages(); ?>
  15. </div> <!-- /post-content -->
  16. <div class="clear"></div>