index.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. ?>
  3. <?php
  4. get_header();
  5. ?>
  6. <div class="container-fluid text-center">
  7. <div class="jumbotron">
  8. <div class="row">
  9. <div class="col-md-10 col-md-offset-1">
  10. <h1><?php _e( 'My thoughts on and off the web.', 'tuts' ); ?></h1>
  11. <p class="lead">
  12. <?php _e( 'Web-design, development, and parent-teacher conferences.', 'tuts' ); ?>
  13. </p>
  14. </div> <!-- end col -->
  15. </div> <!-- end row -->
  16. </div> <!-- end jumbotron -->
  17. </div> <!-- end container-fluid -->
  18. <div class="page-blog container-fluid">
  19. <div class="row">
  20. <aside class="sid ebar col-md-3 col-md-offset-1 col-md-push-8">
  21. <?php // dynamic_sidebar('main-sidebar'); ?>
  22. <?php get_sidebar(); ?>
  23. </aside>
  24. <div class="posts col-md-8 col-md-pull-4">
  25. <div class="row">
  26. <?php if(have_posts()):
  27. while(have_posts()) :
  28. the_post();
  29. ?>
  30. <?php get_template_part('content', get_post_format()); ?>
  31. <?php endwhile; ?>
  32. <?php else:
  33. get_template_part('content', 'none');
  34. endif;
  35. ?>
  36. <?php
  37. // carregar os numeros de paginacao
  38. tuts_numbered_pagination();
  39. ?>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. <?php get_footer(); ?>