Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <?php
  2. get_header();
  3. get_sidebar();?>
  4. <content>
  5. <div class="row">
  6. <div class="col-md-8 col-sm-12 col-lg-8">
  7. <div class="container">
  8. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  9. <?php //while ( have_posts() ) : the_post(); ?>
  10. <div class="row">
  11. <div class="visible-lg-block visible-md-block" style="margin-top: 20px; display: block;"></div>
  12. <div class="col-md-3 col-sm-5 col-lg-4 col-slg-4 col-f-4 col-fhd4 img-responsive img-news">
  13. <?php
  14. if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
  15. the_post_thumbnail( 'medium', 'class=img-responsive');
  16. }
  17. ?></div>
  18. <div class="col-md-5 col-sm-7 col-lg-5 col-slg-6 col-f-7 col-fhd-8">
  19. <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
  20. <p>
  21. <?php the_content('Czytaj dalej &#187;'); ?>
  22. </p>
  23. <p class="text-muted small"><?php the_time('d-m-Y'); ?> | autor: <?php the_author(); ?> </p>
  24. </div>
  25. </div>
  26. <?php endwhile; else:
  27. endif; ?>
  28. <br>
  29. <div class="" style="margin-top: 20px; display: block;"></div>
  30. </div>
  31. </div>
  32. <?php get_template_part('rightbar'); ?>
  33. </div>
  34. </div>
  35. </content>
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement