1. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  2.     <!-- title, meta, and date info -->
  3.     <div class="entry-header clearfix">
  4.         <h3 class="entry-title">
  5.             <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  6.         </h3>
  7.  
  8.         <div class="meta-wrapper clearfix">
  9.  
  10.             <div class="entry-meta author-gravatar-wrapper">
  11.                 <div class="author-gravatar"><?php echo get_avatar( get_the_author_meta('email'), '70' ); ?></div>
  12.             </div>
  13.             <div class="left-entry-meta">
  14.                 <div class="date-author-wrapper">
  15.                     <div class="entry-meta author-wrapper">
  16.                         <?php printf( __( 'Posted by %s on', 'it-l10n-BuilderChild-Noise' ), '<span class="author">' . builder_get_author_link() . '</span>' ); ?>
  17.                     </div>
  18.  
  19.                     <div class="entry-meta date">
  20.                         <span class="month"><?php the_time( 'F' ); ?></span>
  21.                         <span class="day"><?php the_time( 'j' ); ?><span class="day-suffix"><?php the_time( 'S' ); ?></span><span class="day-comma">,</span></span>
  22.                         <span class="year"><?php the_time( 'Y' ); ?></span>
  23.                     </div>
  24.  
  25.                     <div class="entry-meta comments-wrapper">
  26.                         <?php do_action( 'builder_comments_popup_link', '<span class="comments"> | ' , '</span>', __( '%s', 'it-l10n-BuilderChild-Noise' ), __( '0 Comments', 'it-l10n-BuilderChild-Noise' ), __( '1 Comment', 'it-l10n-BuilderChild-Noise' ), __( '% Comments', 'it-l10n-BuilderChild-Noise' ) ); ?>
  27.                     </div>
  28.  
  29.                     <div class="entry-meta categories"><?php printf( __( '| Categories: %s', 'it-l10n-BuilderChild-Noise' ), get_the_category_list( ', ' ) ); ?></div>
  30.                 </div>
  31.  
  32.  
  33.  
  34.             </div>
  35.         </div>
  36.     </div>
  37.  
  38.     <?php if ( has_post_thumbnail() ) : ?>
  39.         <a href="<?php the_permalink(); ?>">
  40.             <?php the_post_thumbnail( 'image_blog_index', array( 'class' => 'image_blog_index' ) ); ?>
  41.         </a>
  42.     <?php endif; ?>
  43.  
  44.     <!-- post content -->
  45.     <div class="entry-content clearfix">
  46.         <?php the_content( __( 'Read More &rarr;', 'it-l10n-BuilderChild-Noise' ) ); ?>
  47.     </div>
  48.  
  49.     <div class="entry-footer clearfix">
  50.     </div>
  51. </div>
  52. <!-- end .post -->