Advertisement
Semblance

single.php

Feb 4th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4.  
  5. <div id="inner-content" class="wrap clearfix">
  6.  
  7. <div id="main" class="eightcol first clearfix" role="main">
  8.  
  9. <?php while ( have_posts() ) : the_post(); ?>
  10.  
  11. <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">
  12.  
  13. <header class="article-header">
  14.  
  15. <h1 class="single-title" itemprop="headline"><?php the_title(); ?></h1>
  16.  
  17. <p class="meta"><?php _e("Posted", "bonestheme"); ?> <time datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time('F jS, Y'); ?></time> <?php _e("by", "bonestheme"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "bonestheme"); ?> <?php the_category(', '); ?>.</p>
  18.  
  19. </header> <!-- end article header -->
  20.  
  21. <section class="post-content clearfix" itemprop="articleBody">
  22. <?php the_content(); ?>
  23. </section> <!-- end article section -->
  24.  
  25. <footer class="article-footer">
  26.  
  27. <?php the_tags('<p class="tags"><span class="tags-title">Tags:</span> ', ', ', '</p>'); ?>
  28.  
  29. </footer> <!-- end article footer -->
  30.  
  31. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement