PageRenderTime 34ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 40 lines | 31 code | 9 blank | 0 comment | 2 complexity | 35e1ee4e8decb994b09334d4172f9e5f 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. <?php while ( have_posts() ) : the_post() ?>
  5. <div id="post-<?php the_ID() ?>" class="<?php sandbox_post_class() ?>">
  6. <div class="entry-meta">
  7. <h2 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php echo esc_attr( sprintf( __( 'Permanent link to %s', 'chaostheory' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title() ?></a></h2>
  8. <ul>
  9. <li 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', 'chaostheory'), the_date('', '', '', false), get_the_time()) ?></abbr></li>
  10. <!-- <li class="entry-author author vcard"><?php printf(__('By %s', 'chaostheory'), '<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>') ?></li> -->
  11. <li class="entry-category"><?php printf(__('Posted in %s', 'chaostheory'), get_the_category_list(', ')) ?></li>
  12. <?php the_tags('<li class="entry-tags">'.__('Tagged').' ', ", ", "</li>\n") ?>
  13. <?php edit_post_link(__('Edit', 'chaostheory'), "\t\t\t\t\t<li class='entry-editlink'>", "</li>"); ?>
  14. <li class="entry-commentlink"><?php comments_popup_link(__('Leave a Comment', 'chaostheory'), __('Comments (1)', 'chaostheory'), __('Comments (%)', 'chaostheory')) ?></li>
  15. </ul>
  16. </div>
  17. <div class="entry-content">
  18. <?php the_content('<span class="more-link">'.__('Read More &raquo;', 'chaostheory').'</span>'); ?>
  19. <?php link_pages("\t\t\t\t\t".'<div class="page-link">'.__('Pages: ', 'chaostheory'), "</div>\n", 'number'); ?>
  20. </div>
  21. </div><!-- .post -->
  22. <?php if ( comments_open() ) comments_template(); ?>
  23. <?php endwhile ?>
  24. <div id="nav-below" class="navigation">
  25. <div class="nav-previous"><?php next_posts_link(__('&laquo; Older posts', 'chaostheory')) ?></div>
  26. <div class="nav-next"><?php previous_posts_link(__('Newer posts &raquo;', 'chaostheory')) ?></div>
  27. </div>
  28. </div><!-- #content .hfeed -->
  29. </div><!-- #container -->
  30. <?php get_sidebar() ?>
  31. <?php get_footer() ?>