';
//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 ' '.get_the_category_list( __( ', ', 'boss' ) ).' / ';
print ' '; comments_number( __('0 comment','boss'), __('1 comment','boss'), __('% comments','boss') );
print '
';
//title
print '
';
$boss_title = get_the_title();
if(!empty($boss_title)){
print $boss_title;
}else{
print __('Untitled','boss');
}
print '
';
the_content();
wp_link_pages( array( 'before' => '' . __( 'Pages:', 'boss' ), 'after' => '
' ) );
//tags
if(has_tag()){
print '
';
print get_the_tag_list(sprintf( '%s: ', __( 'Tags', 'boss' ) ), ', ', '
');
}
//sharing
if(get_post_format() != 'aside'){
//thumb
$boss_postthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'large' );
$boss_post_sharing_facebook = get_theme_mod('dp_post_sharing_facebook');
$boss_post_sharing_twitter = get_theme_mod('dp_post_sharing_twitter');
$boss_post_sharing_gplus = get_theme_mod('dp_post_sharing_gplus');
$boss_post_sharing_linkedin = get_theme_mod('dp_post_sharing_linkedin');
$boss_post_sharing_pinterest = get_theme_mod('dp_post_sharing_pinterest');
$boss_post_sharing_reddit = get_theme_mod('dp_post_sharing_reddit');
$boss_post_sharing_digg = get_theme_mod('dp_post_sharing_digg');
$boss_post_sharing_delicious = get_theme_mod('dp_post_sharing_delicious');
$boss_post_sharing_stumble = get_theme_mod('dp_post_sharing_stumble');
$boss_post_sharing_tumblr = get_theme_mod('dp_post_sharing_tumblr');
$boss_post_sharing_email = get_theme_mod('dp_post_sharing_email');
if($boss_post_sharing_facebook || $boss_post_sharing_twitter || $boss_post_sharing_gplus || $boss_post_sharing_linkedin || $boss_post_sharing_pinterest || $boss_post_sharing_reddit || $boss_post_sharing_digg || $boss_post_sharing_delicious || $boss_post_sharing_stumble || $boss_post_sharing_tumblr || $boss_post_sharing_email){
print '';
$boss_curtitle = get_the_title();
$boss_uri_parts = explode('?', $_SERVER['REQUEST_URI']);
if($boss_post_sharing_facebook){
print '
';
}
if($boss_post_sharing_twitter){
print '
';
}
if($boss_post_sharing_gplus){
print '
';
}
if($boss_post_sharing_linkedin){
print '
';
}
if($boss_post_sharing_pinterest){
print '
';
}
if($boss_post_sharing_reddit){
print '
';
}
if($boss_post_sharing_digg){
print '
';
}
if($boss_post_sharing_delicious){
print '
';
}
if($boss_post_sharing_stumble){
print '
';
}
if($boss_post_sharing_tumblr){
print '
';
}
if($boss_post_sharing_email){
print '
';
}
print '
';
}
}
print '
';
//previous and next post
if(get_post_format() != 'aside'){
print '';
print get_the_post_navigation(array(
'prev_text' => ' '.__('PREVIOUS','boss').'
%title
',
'next_text' => ''.__('NEXT','boss').'
%title
'
));
/*
$boss_prev_post = get_previous_post();
if(!empty( $boss_prev_post )){
print '';
}
$boss_next_post = get_next_post();
if(!empty( $boss_next_post )){
print '';
}
*/
print '
';
}
?>