PageRenderTime 50ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 45 lines | 37 code | 8 blank | 0 comment | 2 complexity | 476ad72dd5a57939650b6626a8999748 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. <h2 class="page-title"><?php _e( 'Tag Archives:', 'notesil' ); ?> <span><?php single_tag_title(); ?></span></h2>
  5. <div id="nav-above" class="navigation">
  6. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&laquo;</span> Older posts', 'notesil' ) ); ?></div>
  7. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&raquo;</span>', 'notesil' ) ); ?></div>
  8. </div>
  9. <?php while ( have_posts() ) : the_post(); ?>
  10. <div id="post-<?php the_ID(); ?>" class="<?php notesil_post_class(); ?>">
  11. <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>
  12. <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>
  13. <div class="entry-content">
  14. <?php the_excerpt( __( 'Read More <span class="meta-nav">&raquo;</span>', 'notesil' ) ); ?>
  15. </div>
  16. <div class="entry-meta">
  17. <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>
  18. <span class="meta-sep">|</span>
  19. <span class="cat-links"><?php printf( __( 'Posted in %s', 'notesil' ), get_the_category_list( ', ' ) ); ?></span>
  20. <span class="meta-sep">|</span>
  21. <?php if ( $tag_ur_it = notesil_tag_ur_it( ', ' ) ) : // Returns tags other than the one queried ?>
  22. <span class="tag-links"><?php printf( __( 'Also tagged %s', 'notesil' ), $tag_ur_it ); ?></span>
  23. <span class="meta-sep">|</span>
  24. <?php endif; ?>
  25. <?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" ); ?>
  26. <span class="comments-link"><?php comments_popup_link( __( 'Comments (0)', 'notesil' ), __( 'Comments (1)', 'notesil' ), __( 'Comments (%)', 'notesil' ) ); ?></span>
  27. </div>
  28. </div><!-- .post -->
  29. <?php endwhile; ?>
  30. <div id="nav-below" class="navigation">
  31. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&laquo;</span> Older posts', 'notesil' ) ); ?></div>
  32. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&raquo;</span>', 'notesil' ) ); ?></div>
  33. </div>
  34. </div><!-- #content -->
  35. <?php get_sidebar(); ?>
  36. </div><!-- #container -->
  37. <?php get_footer(); ?>