PageRenderTime 71ms CodeModel.GetById 36ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 37 lines | 29 code | 8 blank | 0 comment | 1 complexity | 7e90faf513770832a322e2aa2ef684da 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 while ( have_posts() ) : the_post(); ?>
  5. <div id="post-<?php the_ID(); ?>" class="<?php notesil_post_class(); ?>">
  6. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( __( 'Permalink to %s', 'notesil' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  7. <div class="entry-content">
  8. <?php the_content( __( 'Read More <span class="meta-nav">&raquo;</span>', 'notesil' ) ); ?>
  9. <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'notesil' ) . '&after=</div>' ); ?>
  10. </div>
  11. <div class="entry-meta">
  12. <span class="entry-date"><a href="<?php the_permalink(); ?>" class="published" title="<?php the_time( 'Y-m-d\TH:i:sO' ); ?>"><?php unset( $previousday ); printf( __( '%1$s &#8211; %2$s', 'notesil' ), the_date( '', '', '', false ), get_the_time() ); ?></a>
  13. <?php printf( __( 'Categories: %s', 'notesil' ), get_the_category_list( ', ' ) ); ?></span>
  14. <span class="meta-sep">|</span>
  15. <span class="comments-link"><?php comments_popup_link( __( 'Post a comment', 'notesil' ), __( 'Comments (1)', 'notesil' ), __( 'Comments (%)', 'notesil' ) ); ?></span>
  16. <p> <?php the_tags( __( '<span class="tag-links">Tagged ', 'notesil' ), ", ", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ); ?>
  17. <?php edit_post_link( __( 'Edit', 'notesil' ), "\t\t\t\t\t<span class=\"edit-link\">", "</span>\n" ); ?></p>
  18. </div>
  19. </div><!-- .post -->
  20. <?php comments_template(); ?>
  21. <?php endwhile; ?>
  22. <div id="nav-below" class="navigation">
  23. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&laquo;</span> Older posts', 'notesil' ) ); ?></div>
  24. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&raquo;</span>', 'notesil' ) ); ?></div>
  25. </div>
  26. </div><!-- #content -->
  27. <?php get_sidebar(); ?>
  28. </div><!-- #container -->
  29. <?php get_footer(); ?>