PageRenderTime 25ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 58 lines | 48 code | 10 blank | 0 comment | 13 complexity | 3923a18e7134c2b364b6d9fd78b0d24a 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. <div id="nav-above" class="navigation">
  6. <div class="nav-previous"><?php previous_post_link('%link', '<span class="meta-nav">&laquo;</span> %title') ?></div>
  7. <div class="nav-next"><?php next_post_link('%link', '%title <span class="meta-nav">&raquo;</span>') ?></div>
  8. </div>
  9. <div id="post-<?php the_ID(); ?>" class="<?php sandbox_post_class(); ?>">
  10. <h2 class="entry-title"><?php the_title(); ?></h2>
  11. <div class="entry-content">
  12. <?php the_content(''.__('Read More <span class="meta-nav">&raquo;</span>', 'sandbox').''); ?>
  13. <?php link_pages("\t\t\t\t\t<div class='page-link'>".__('Pages: ', 'sandbox'), "</div>\n", 'number'); ?>
  14. </div>
  15. <div class="entry-meta">
  16. <?php printf(__('This entry was written by %1$s and posted on <abbr class="published" title="%2$sT%3$s">%4$s at %5$s</abbr> and filed under %6$s with tags %10$s. Bookmark the <a href="%7$s" title="Permalink to %8$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%9$s" title="Comments RSS to %8$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'sandbox'),
  17. '<span class="author vcard"><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. get_the_time('Y-m-d'),
  19. get_the_time('H:i:sO'),
  20. the_date('', '', '', false),
  21. get_the_time(),
  22. get_the_category_list(', '),
  23. get_permalink(),
  24. esc_attr( get_the_title() ),
  25. comments_rss(),
  26. (is_callable('get_the_tag_list') ? get_the_tag_list(', ') : '')
  27. ) ?>
  28. <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) : // Comments and trackbacks open ?>
  29. <?php printf(__('<a class="comment-link" href="#respond" title="Post a comment">Post a comment</a> or leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'sandbox'), get_trackback_url()) ?>
  30. <?php elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) : // Only trackbacks open ?>
  31. <?php printf(__('Comments are closed, but you can leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'sandbox'), get_trackback_url()) ?>
  32. <?php elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) : // Only comments open ?>
  33. <?php printf(__('Trackbacks are closed, but you can <a class="comment-link" href="#respond" title="Post a comment">post a comment</a>.', 'sandbox')) ?>
  34. <?php elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) : // Comments and trackbacks closed ?>
  35. <?php _e('Both comments and trackbacks are currently closed.') ?>
  36. <?php endif; ?>
  37. <?php edit_post_link(__('Edit', 'sandbox'), "\n\t\t\t\t\t<span class=\"edit-link\">", "</span>"); ?>
  38. </div>
  39. </div><!-- .post -->
  40. <div id="nav-below" class="navigation">
  41. <div class="nav-previous"><?php previous_post_link('%link', '<span class="meta-nav">&laquo;</span> %title') ?></div>
  42. <div class="nav-next"><?php next_post_link('%link', '%title <span class="meta-nav">&raquo;</span>') ?></div>
  43. </div>
  44. <?php comments_template(); ?>
  45. </div><!-- #content -->
  46. </div><!-- #container -->
  47. <?php get_sidebar() ?>
  48. <?php get_footer() ?>