PageRenderTime 45ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 28 lines | 19 code | 9 blank | 0 comment | 0 complexity | 6ce0129a634a70423478a9a08ac63ac8 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="post-<?php the_ID(); ?>" class="<?php sandbox_post_class() ?>">
  6. <div class="entry-meta">
  7. <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>
  8. </div>
  9. <div class="entry-content">
  10. <?php the_content() ?>
  11. <?php link_pages('<div class="page-link">'.__('Pages: ', 'chaostheory'), '</div>', 'number'); ?>
  12. <?php edit_post_link(__('Edit this entry.', 'chaostheory'),'<p class="edit-link">','</p>') ?>
  13. </div>
  14. </div><!-- .post -->
  15. <?php comments_template(); ?>
  16. </div><!-- #content .hfeed -->
  17. </div><!-- #container -->
  18. <?php get_sidebar() ?>
  19. <?php get_footer() ?>