-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
39 lines (26 loc) · 956 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* The main template file for the ElementalEdge theme.
* This file is used to display a page when nothing more specific matches a query.
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php if (have_posts()) : ?>
<!-- Start the Loop -->
<?php while (have_posts()) : the_post(); ?>
<!-- Include the Post Format-specific template for the content -->
<?php get_template_part('template-parts/content', get_post_format()); ?>
<?php endwhile; ?>
<!-- Add Pagination -->
<?php the_posts_navigation(); ?>
<?php else : ?>
<!-- Include the template for a "No posts found" message -->
<?php get_template_part('template-parts/content', 'none'); ?>
<?php endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_sidebar();
get_footer();
?>