index.php 895 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. * Fallback template (WordPress requires index.php). Not reached in normal use —
  4. * front-page.php owns "/", and archive/single/page/search/category/tag/404 all
  5. * have their own templates. Kept as a minimal, correct posts loop just in case a
  6. * query ever falls through here.
  7. */
  8. get_header(); ?>
  9. <div class="container leader">
  10. <div class="row mt-5">
  11. <div class="col-md-8">
  12. <?php if ( have_posts() ) : ?>
  13. <?php while ( have_posts() ) : the_post(); ?>
  14. <article <?php post_class(); ?>>
  15. <h2><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  16. <div class="entry-content"><?php dw_good_excerpt( 240 ); ?></div>
  17. </article>
  18. <?php endwhile; ?>
  19. <?php the_posts_pagination(); ?>
  20. <?php else : ?>
  21. <p><?php esc_html_e( 'Nothing found.', 'daw' ); ?></p>
  22. <?php endif; ?>
  23. </div>
  24. </div>
  25. </div>
  26. <?php get_footer(); ?>