Sha256: 4b109c17540742a0c20840c603bcdf93efe52ea7faa5ff7c71a10c93957ed631
Contents?: true
Size: 686 Bytes
Versions: 3
Compression:
Stored size: 686 Bytes
Contents
<?php get_template_part('templates/page', 'header'); ?> <?php if (!have_posts()) : ?> <div class="alert alert-warning"> <?php _e('Sorry, no results were found.', 'roots'); ?> </div> <?php get_search_form(); ?> <?php endif; ?> <?php while (have_posts()) : the_post(); ?> <?php get_template_part('templates/content', get_post_format()); ?> <?php endwhile; ?> <?php if ($wp_query->max_num_pages > 1) : ?> <nav class="post-nav"> <ul class="pager"> <li class="previous"><?php next_posts_link(__('← Older posts', 'roots')); ?></li> <li class="next"><?php previous_posts_link(__('Newer posts →', 'roots')); ?></li> </ul> </nav> <?php endif; ?>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
stump-cli-0.1.3 | lib/wp/wp-content/themes/stump/index.php |
stump-cli-0.1.2 | lib/wp/wp-content/themes/stump/index.php |
stump-cli-0.1.1 | lib/wp/wp-content/themes/stump/index.php |