-
Notifications
You must be signed in to change notification settings - Fork 2
/
single.php
46 lines (31 loc) · 1.21 KB
/
single.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
40
41
42
43
44
45
46
<!doctype html>
<?php get_header(); ?>
<body <?php body_class(); ?> itemscope itemtype="http://schema.org/WebPage">
<?php get_template_part( 'template-parts/site-header' ); ?>
<main role="main" itemprop="mainContentOfPage" itemscope itemtype="http://schema.org/Blog">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
/*
* Ah, post formats. Nature's greatest mystery (aside from the sloth).
*
* So this function will bring in the needed template file depending on what the post
* format is. The different post formats are located in the post-formats folder.
*
*
* REMEMBER TO ALWAYS HAVE A DEFAULT ONE NAMED "format.php" FOR POSTS THAT AREN'T
* A SPECIFIC POST FORMAT.
*
* If you want to remove post formats, just delete the post-formats folder and
* replace the function below with the contents of the "format.php" file.
*/
get_template_part( 'post-formats/format', get_post_format() );
?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'template-parts/missing-content' ); ?>
<?php endif; ?>
</main>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</body>
</html> <!-- end of site. what a ride! -->