';
//date
print '
'.get_the_date('d').'
'.get_the_date('M').'
'.get_the_date('Y').'
';
print '
';
//sticky
if(is_sticky()){
print ' '.__('Sticky','boss').' / ';
}
//info
print ' '.get_the_author().' / ';
print ' '.str_replace('rel="category"','',get_the_category_list( __( ', ', 'boss' ) )).' / ';
print ' '; comments_number( __('0 comment','boss'), __('1 comment','boss'), __('% comments','boss') );
print '
';
//title
print '
';
//featured image
if(has_post_thumbnail() && !has_excerpt()){
the_post_thumbnail('large');
}
//content
print '';
if(has_excerpt()){
the_excerpt();
}elseif(empty($dp_post_format_content)){
the_content();
}
print '';
wp_link_pages( array( 'before' => '' . __( 'Pages:', 'boss' ), 'after' => '
' ) );
print '
';
?>