PageRenderTime 331ms CodeModel.GetById 36ms RepoModel.GetById 40ms app.codeStats 0ms

/blog/wp-content/themes/chaostheory/single.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 42 lines | 32 code | 10 blank | 0 comment | 0 complexity | d7710c5e03395590eac3801ee78b9a60 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php get_header(); ?>
  2. <div id="container">
  3. <div id="content" class="hfeed">
  4. <?php the_post(); ?>
  5. <div id="nav-above" class="navigation">
  6. <div class="nav-previous"><?php previous_post_link('&laquo; %link') ?></div>
  7. <div class="nav-next"><?php next_post_link('%link &raquo;') ?></div>
  8. </div>
  9. <div id="post-<?php the_ID(); ?>" class="<?php sandbox_post_class(); ?>">
  10. <div class="entry-meta">
  11. <h2 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php echo esc_attr( sprintf( __( 'Permanent link to %s', 'chaostheory' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title() ?></a></h2>
  12. <ul>
  13. <li class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php unset($previousday); printf(__('%1$s &#8211; %2$s', 'chaostheory'), the_date('', '', '', false), get_the_time()) ?></abbr></li>
  14. <li class="entry-category"><?php printf(__('Posted in %s', 'chaostheory'), get_the_category_list(', ')) ?></li>
  15. <?php the_tags('<li class="entry-tags">'.__('Tagged').' ', ", ", "</li>\n") ?>
  16. <?php edit_post_link(__('Edit', 'chaostheory'), "\t\t\t\t\t<li class='entry-editlink'>", "</li>"); ?>
  17. </ul>
  18. </div>
  19. <div class="entry-content">
  20. <?php the_content('<span class="more-link">'.__('Read More &raquo;', 'chaostheory').'</span>'); ?>
  21. <?php link_pages('<div class="page-link">'.__('Pages: ', 'chaostheory'), '</div>', 'number'); ?>
  22. </div>
  23. </div><!-- .post -->
  24. <div id="nav-below" class="navigation">
  25. <div class="nav-previous"><?php previous_post_link('&laquo; %link') ?></div>
  26. <div class="nav-next"><?php next_post_link('%link &raquo;') ?></div>
  27. </div>
  28. <?php comments_template(); ?>
  29. </div><!-- #content .hfeed -->
  30. </div><!-- #container -->
  31. <?php get_sidebar(); ?>
  32. <?php get_footer(); ?>