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

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 55 lines | 44 code | 11 blank | 0 comment | 3 complexity | 9629e2a26533a92604976fb53fc08287 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. <?php if ( is_day() ) : ?>
  6. <h2 class="page-title"><?php printf( __( 'Daily Archives: <span>%s</span>', 'notesil' ), get_the_time(get_option( 'date_format' )) ); ?></h2>
  7. <?php elseif ( is_month() ) : ?>
  8. <h2 class="page-title"><?php printf( __( 'Monthly Archives: <span>%s</span>', 'notesil' ), get_the_time( 'F Y' ) ); ?></h2>
  9. <?php elseif ( is_year() ) : ?>
  10. <h2 class="page-title"><?php printf( __( 'Yearly Archives: <span>%s</span>', 'notesil' ), get_the_time( 'Y' ) ); ?></h2>
  11. <?php elseif ( isset( $_GET['paged'] ) && !empty( $_GET['paged'] ) ) : ?>
  12. <h2 class="page-title"><?php _e( 'Blog Archives', 'notesil' ); ?></h2>
  13. <?php endif; ?>
  14. <?php rewind_posts(); ?>
  15. <div id="nav-above" class="navigation">
  16. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&laquo;</span> Older posts', 'notesil' ) ); ?></div>
  17. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&raquo;</span>', 'notesil' ) ); ?></div>
  18. </div>
  19. <?php while ( have_posts() ) : the_post(); ?>
  20. <div id="post-<?php the_ID(); ?>" class="<?php notesil_post_class(); ?>">
  21. <h3 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></h3>
  22. <div 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></div>
  23. <div class="entry-content">
  24. <?php the_excerpt( __( 'Read More <span class="meta-nav">&raquo;</span>', 'notesil' ) ); ?>
  25. </div>
  26. <div class="entry-meta">
  27. <span class="author vcard"><?php printf( __( 'By %s', 'notesil' ), '<a class="url fn n" href="' . get_author_posts_url( $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( __( 'View all posts by %s', 'notesil' ), $authordata->display_name ) . '">' . get_the_author() . '</a>' ); ?></span>
  28. <span class="meta-sep">|</span>
  29. <span class="cat-links"><?php printf( __( 'Posted in %s', 'notesil' ), get_the_category_list( ', ' ) ); ?></span>
  30. <span class="meta-sep">|</span>
  31. <?php the_tags( __( '<span class="tag-links">Tagged ', 'notesil' ), ", ", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ); ?>
  32. <?php edit_post_link( __( 'Edit', 'notesil' ), "\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ); ?>
  33. <span class="comments-link"><?php comments_popup_link( __( 'Comments (0)', 'notesil' ), __( 'Comments (1)', 'notesil' ), __( 'Comments (%)', 'notesil' ) ); ?></span>
  34. </div>
  35. </div><!-- .post -->
  36. <?php endwhile; ?>
  37. <div id="nav-below" class="navigation">
  38. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&laquo;</span> Older posts', 'notesil' ) ); ?></div>
  39. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&raquo;</span>', 'notesil' ) ); ?></div>
  40. </div>
  41. </div><!-- #content .hfeed -->
  42. <?php get_sidebar(); ?>
  43. </div><!-- #container -->
  44. <?php get_footer(); ?>