Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <div class="col-md-4 col-xs-6 single_post">
  2. <?php $count = $offset + $alm_item; ?>
  3. <div class="thumb">
  4. <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?></a>
  5. </div>
  6. <div class="post_meta">
  7. <h2 class="post_title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  8. <p class="single_meta">
  9. <span class="author hidden-xs"><i class="fa fa-user"></i><em><?php the_author(); ?></em></span>
  10. <span class="date"><i class="fa fa-clock-o"></i><em><?php echo human_time_diff( get_the_time('U'), current_time('timestamp') ); ?></em></span>
  11. </p>
  12. </div>
  13. </div>
  14. <?php if(!is_float($count / 3)) : ?>
  15. <div class="clearfix visible-lg-block"></div>
  16. <div class="clearfix visible-md-block"></div>
  17. <?php endif; ?>
  18. <?php if(!is_float($count / 2)) : ?>
  19. <div class="clearfix visible-xs-block"></div>
  20. <div class="clearfix visible-sm-block"></div>
  21. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement