-
Notifications
You must be signed in to change notification settings - Fork 73
/
index.php
37 lines (19 loc) · 1.25 KB
/
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
<?php get_header(); // Loads the header.php template. ?>
<main <?php hybrid_attr( 'content' ); ?>>
<?php if ( ! is_front_page() && hybrid_is_plural() ) : // If viewing a multi-post page ?>
<?php locate_template( array( 'misc/archive-header.php' ), true ); // Loads the misc/archive-header.php template. ?>
<?php endif; // End check for multi-post page. ?>
<?php if ( have_posts() ) : // Checks if any posts were found. ?>
<?php while ( have_posts() ) : // Begins the loop through found posts. ?>
<?php the_post(); // Loads the post data. ?>
<?php hybrid_get_content_template(); // Loads the content/*.php template. ?>
<?php if ( is_singular() ) : // If viewing a single post/page/CPT. ?>
<?php comments_template( '', true ); // Loads the comments.php template. ?>
<?php endif; // End check for single post. ?>
<?php endwhile; // End found posts loop. ?>
<?php locate_template( array( 'misc/loop-nav.php' ), true ); // Loads the misc/loop-nav.php template. ?>
<?php else : // If no posts were found. ?>
<?php locate_template( array( 'content/error.php' ), true ); // Loads the content/error.php template. ?>
<?php endif; // End check for posts. ?>
</main><!-- #content -->
<?php get_footer(); // Loads the footer.php template. ?>