123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- ?>
- <?php
- get_header();
- ?>
- <div class="container-fluid text-center">
- <div class="jumbotron">
- <div class="row">
- <div class="col-md-10 col-md-offset-1">
- <h1><?php _e( 'My thoughts on and off the web.', 'tuts' ); ?></h1>
- <p class="lead">
- <?php _e( 'Web-design, development, and parent-teacher conferences.', 'tuts' ); ?>
- </p>
- </div> <!-- end col -->
- </div> <!-- end row -->
- </div> <!-- end jumbotron -->
- </div> <!-- end container-fluid -->
- <div class="page-blog container-fluid">
- <div class="row">
- <aside class="sid ebar col-md-3 col-md-offset-1 col-md-push-8">
-
- <?php // dynamic_sidebar('main-sidebar'); ?>
- <?php get_sidebar(); ?>
- </aside>
- <div class="posts col-md-8 col-md-pull-4">
- <div class="row">
- <?php if(have_posts()):
- while(have_posts()) :
- the_post();
- ?>
- <?php get_template_part('content', get_post_format()); ?>
- <?php endwhile; ?>
- <?php else:
- get_template_part('content', 'none');
- endif;
- ?>
- <?php
- // carregar os numeros de paginacao
- tuts_numbered_pagination();
- ?>
- </div>
- </div>
- </div>
- </div>
- <?php get_footer(); ?>
|