PageRenderTime 42ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 45 lines | 35 code | 10 blank | 0 comment | 1 complexity | c4fafc9856f60d68904c1256a7067219 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" class="hfeed">
  4. <div id="nav-above" class="navigation">
  5. <div class="nav-previous"><?php next_posts_link(__('&laquo; Older posts', 'sandbox')) ?></div>
  6. <div class="nav-next"><?php previous_posts_link(__('Newer posts &raquo;', '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('<span class="more-link">'.__('Read More &raquo;', 'sandbox').'</span>'); ?>
  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="entry-author author vcard"><?php printf(__('By %s', 'sandbox'), '<a class="url fn" href="'.get_author_link(false, $authordata->ID, $authordata->user_nicename).'" title="View all posts by ' . $authordata->display_name . '">'.get_the_author().'</a>') ?></span>
  18. <span class="metasep">|</span>
  19. <span class="entry-category"><?php printf(__('Posted in %s', 'sandbox'), get_the_category_list(', ')) ?></span>
  20. <?php echo get_the_tag_list('<span class="metasep">|</span> <span class="tag-links">'.__('Tags: ', 'sandbox'), ', ', '</span>'); ?>
  21. <span class="metasep">|</span>
  22. <?php edit_post_link(__('Edit', 'sandbox'), "\t\t\t\t\t<span class='entry-editlink'>", "</span>\n\t\t\t\t\t<span class='metasep'>|</span>\n"); ?>
  23. <span class="entry-commentlink"><?php comments_popup_link(__('Leave a Comment', 'sandbox'), __('Comments (1)', 'sandbox'), __('Comments (%)', 'sandbox')) ?></span>
  24. </div>
  25. </div><!-- .post -->
  26. <?php comments_template() ?>
  27. <?php endwhile ?>
  28. <div id="nav-below" class="navigation">
  29. <div class="nav-previous"><?php next_posts_link(__('&laquo; Older posts', 'sandbox')) ?></div>
  30. <div class="nav-next"><?php previous_posts_link(__('Newer posts &raquo;', 'sandbox')) ?></div>
  31. </div>
  32. </div><!-- #content .hfeed -->
  33. </div><!-- #container -->
  34. <?php get_sidebar() ?>
  35. <?php get_footer() ?>