| 1234567891011121314151617181920212223242526 |
- <?php
- /*
- * Fallback template (WordPress requires index.php). Not reached in normal use —
- * front-page.php owns "/", and archive/single/page/search/category/tag/404 all
- * have their own templates. Kept as a minimal, correct posts loop just in case a
- * query ever falls through here.
- */
- get_header(); ?>
- <div class="container leader">
- <div class="row mt-5">
- <div class="col-md-8">
- <?php if ( have_posts() ) : ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <article <?php post_class(); ?>>
- <h2><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
- <div class="entry-content"><?php dw_good_excerpt( 240 ); ?></div>
- </article>
- <?php endwhile; ?>
- <?php the_posts_pagination(); ?>
- <?php else : ?>
- <p><?php esc_html_e( 'Nothing found.', 'daw' ); ?></p>
- <?php endif; ?>
- </div>
- </div>
- </div>
- <?php get_footer(); ?>
|