PageRenderTime 46ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/blog/wp-content/themes/extinct/sandbox-097/index.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 46 lines | 38 code | 8 blank | 0 comment | 2 complexity | 0588d62fe1510ebd959bf8314f323896 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. <div id="nav-above" class="navigation">
  5. <div class="nav-previous"><?php next_posts_link(__('<span class="meta-nav">&laquo;</span> Older posts', 'sandbox')) ?></div>
  6. <div class="nav-next"><?php previous_posts_link(__('Newer posts <span class="meta-nav">&raquo;</span>', 'sandbox')) ?></div>
  7. </div>
  8. <?php while ( have_posts() ) : the_post() ?>
  9. <div id="post-<?php the_ID() ?>" class="<?php sandbox_post_class() ?>">
  10. <h2 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php echo esc_attr( sprintf( __( 'Permanent link to %s', 'sandbox' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title() ?></a></h2>
  11. <div class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php unset($previousday); printf(__('%1$s &#8211; %2$s', 'sandbox'), the_date('', '', '', false), get_the_time()) ?></abbr></div>
  12. <div class="entry-content">
  13. <?php the_content(''.__('Read More <span class="meta-nav">&raquo;</span>', 'sandbox').''); ?>
  14. <?php link_pages("\t\t\t\t\t<div class='page-link'>".__('Pages: ', 'sandbox'), "</div>\n", 'number'); ?>
  15. </div>
  16. <div class="entry-meta">
  17. <span class="author vcard"><?php printf(__('By %s', 'sandbox'), '<a class="url fn n" href="'.get_author_link(false, $authordata->ID, $authordata->user_nicename).'" title="' . sprintf(__('View all posts by %s', 'sandbox'), $authordata->display_name) . '">'.get_the_author().'</a>') ?></span>
  18. <span class="meta-sep">|</span>
  19. <span class="cat-links"><?php printf(__('Posted in %s', 'sandbox'), get_the_category_list(', ')) ?></span>
  20. <?php if (is_callable('get_the_tag_list')) { ?>
  21. <span class="meta-sep">|</span>
  22. <span class="tag-links"><?php printf(__('Tags: %s', 'sandbox'), get_the_tag_list(', ')) ?></span>
  23. <?php } // get_the_tag_list ?>
  24. <span class="meta-sep">|</span>
  25. <?php edit_post_link(__('Edit', 'sandbox'), "\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(__('Leave a Comment', 'sandbox'), __('Comments (1)', 'sandbox'), __('Comments (%)', 'sandbox')) ?></span>
  27. </div>
  28. </div><!-- .post -->
  29. <?php comments_template() ?>
  30. <?php endwhile ?>
  31. <div id="nav-below" class="navigation">
  32. <div class="nav-previous"><?php next_posts_link(__('<span class="meta-nav">&laquo;</span> Older posts', 'sandbox')) ?></div>
  33. <div class="nav-next"><?php previous_posts_link(__('Newer posts <span class="meta-nav">&raquo;</span>', 'sandbox')) ?></div>
  34. </div>
  35. </div><!-- #content -->
  36. </div><!-- #container -->
  37. <?php get_sidebar() ?>
  38. <?php get_footer() ?>