PageRenderTime 54ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/themes/esquire/content-quote.php

https://github.com/Bochet/festival_lgbt
PHP | 45 lines | 34 code | 5 blank | 6 comment | 4 complexity | 10b3aadabc6d4f199bb53c0e9282f096 MD5 | raw file
Possible License(s): GPL-2.0, AGPL-1.0, LGPL-2.1
  1. <?php
  2. /**
  3. * The template for displaying Video Posts
  4. *
  5. * @package Esquire
  6. * @since Esquire 1.0
  7. */
  8. ?>
  9. <div <?php post_class(); ?>>
  10. <?php if ( ! is_page() ) : ?>
  11. <div class="datebox">
  12. <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'esquire' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark">
  13. <p class="day"><?php the_time( 'd' ); ?></p>
  14. <p class="month"><?php the_time( 'M' ); ?></p>
  15. </a>
  16. </div>
  17. <?php endif; ?>
  18. <div class="postbody quote">
  19. <div class="content">
  20. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'esquire' ) ); ?>
  21. </div>
  22. <?php comments_template( '', true ); ?>
  23. <div class="meta bar">
  24. <p class="permalink">
  25. <?php if ( ! is_page() ) : ?>
  26. <a href="<?php the_permalink(); ?>"><span rel="<?php the_time( get_option( 'date_format' ) ); ?>"><?php printf( __( '%1$s ago', 'esquire' ), human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) ); ?></span></a>
  27. <?php endif; ?>
  28. <a href="<?php echo wp_get_shortlink(); ?> " class="shorturl"><span><?php _e( 'Short URL', 'esquire' ); ?></span></a>
  29. <?php comments_popup_link( '<span>' . __( 'Comments', 'esquire' ) . '</span>', '<span>' . __( '1 Comment', 'esquire' ) . '</span>', '<span>' . __( '% Comments', 'esquire' ) . '</span>', 'comment-count', '' ); ?>
  30. <?php edit_post_link( __( 'Edit', 'esquire' ) ); ?>
  31. </p>
  32. <div class="tagbar">
  33. <?php if ( 1 != esquire_category_counter() ) : ?>
  34. <p class="tags cats"><?php the_category( '<span>/</span>' ); ?></p>
  35. <?php endif; ?>
  36. <?php the_tags( '<p class="tags">', '<span>/</span>', '</p>' ); ?>
  37. </div><!-- .tagbar -->
  38. </div><!-- .meta .bar -->
  39. </div><!-- .postbody .text -->
  40. </div><!-- .post -->