Guest User

Untitled

a guest
Mar 6th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. <?php get_template_part('banner','strip');?>
  2. <!-- Container -->
  3. <div class="container">
  4. <!-- Blog Section Content -->
  5. <div class="row-fluid">
  6. <!-- Blog Single Page -->
  7. <div class="<?php if( is_active_sidebar('sidebar-primary')) echo "span8"; else echo "span12";?> Blog_main">
  8. <div class="blog_single_post" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <?php the_post(); ?>
  10. <?php $defalt_arg =array('class' => "img-responsive blog_section2_img" )?>
  11. <?php if(has_post_thumbnail()):?>
  12. <a href="<?php the_permalink(); ?>" class="blog_pull_img2">
  13. <?php the_post_thumbnail('medium', $defalt_arg); ?>
  14. </a>
  15. <?php endif;?>
  16. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  17. <div class="blog_section2_comment">
  18. <a href="<?php the_permalink(); ?>"><i class="fa fa-calendar icon-spacing"></i><?php the_time('M j,Y');?></a>
  19. <a class="post-comment" href="<?php the_permalink(); ?>"><i class="fa fa-comments icon-spacing"></i><?php comments_popup_link( __('Leave a comment', 'rambo' ) ); ?></a>
  20. <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) );?>"><i class="fa fa-user icon-spacing"></i> <?php _e("By",'rambo');?>&nbsp;<?php the_author();?></a>
  21. </div>
  22. <p><?php the_content( __('Read More','rambo' ) ); ?></p>
  23. </div>
  24. <?php comments_template( '', true );?>
  25. </div>
  26. <?php get_sidebar();?>
  27. </div>
  28. </div>
  29. <?php get_footer();?>
Add Comment
Please, Sign In to add comment