-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
48 lines (27 loc) · 760 Bytes
/
Copy pathsingle.php
File metadata and controls
48 lines (27 loc) · 760 Bytes
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
47
48
<?php
/**
* Standard Single Post Template File
*
* @package MPH Starter
* @since 0.1.0
*/
get_header();
?>
<div class="row">
<section class="primary-content grid-8">
<?php while ( have_posts() ) : the_post(); ?>
<article <?php post_class( array( 'entry' ) ); ?>>
<?php
get_template_part( 'parts/single/header' );
get_template_part( 'parts/single/content', get_post_format() );
get_template_part( 'parts/taxonomies' );
comments_template();
?>
</article><!-- / .entry -->
<?php endwhile; ?>
</section><!-- / .primary-content -->
<section class="sidebar grid-4" role="complementary">
<?php get_sidebar(); ?>
</section><!-- .secondary-content .widget-area -->
</div>
<?php get_footer(); ?>