single.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. ?>
  3. <?php
  4. get_header();
  5. ?>
  6. <?php if(have_posts()):
  7. while(have_posts()) :
  8. the_post();
  9. ?>
  10. <div class="container-fluid text-center">
  11. <div class="jumbotron">
  12. <div class="row">
  13. <div class="col-md-10 col-md-offset-1">
  14. <h1><?php the_title(); ?></h1>
  15. </div> <!-- end col -->
  16. </div> <!-- end row -->
  17. </div> <!-- end jumbotron -->
  18. <div class="jumbotron">
  19. <div class="row">
  20. <?php if(has_post_thumbnail()): ?>
  21. <?php the_post_thumbnail('full', array('class' => 'img-responsive center-block')); ?>
  22. <?php endif;?>
  23. </div> <!-- end row -->
  24. </div> <!-- end jumbotron -->
  25. </div> <!-- end container-fluid -->
  26. <div class="single-post container-fluid">
  27. <div class="row">
  28. <div class="col-sm-8 col-sm-offset-2">
  29. <article class="post-excerpt">
  30. <header>
  31. <?php
  32. /* Get the post meta. */
  33. tuts_post_meta();
  34. ?>
  35. </header>
  36. <?php the_content(); ?>
  37. </article>
  38. </div> <!-- end posts -->
  39. </div> <!-- end row -->
  40. </div> <!-- end container-fluid -->
  41. <?php endwhile; ?>
  42. <?php else:
  43. _e('Oops, it seems there is nothing here.', 'tuts');
  44. endif;
  45. ?>
  46. <?php get_footer(); ?>