PageRenderTime 38ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 24 lines | 17 code | 7 blank | 0 comment | 0 complexity | dcc804862071da728da5a357fb742546 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">
  4. <?php the_post(); ?>
  5. <div id="post-<?php the_ID(); ?>" class="<?php notesil_post_class(); ?>">
  6. <h2 class="entry-title"><?php the_title(); ?></h2>
  7. <div class="entry-content">
  8. <?php the_content(); ?>
  9. <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'notesil' ) . '&after=</div>' ); ?>
  10. <?php edit_post_link( __( 'Edit', 'notesil' ), '<p class="edit-link">', '</p>' ); ?>
  11. </div>
  12. </div><!-- .post -->
  13. <?php comments_template(); ?>
  14. </div><!-- #content -->
  15. <?php get_sidebar(); ?>
  16. </div><!-- #container -->
  17. <?php get_footer(); ?>