-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
32 lines (30 loc) · 823 Bytes
/
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
<?php
/**
* @package WordPress
* @subpackage forstarters
*/
?>
<?php fs_get_template_parts( array( 'templates/html-header', 'templates/header' ) ); ?>
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?>>
<div class="container">
<div class="row">
<div class="col-lg-12">
<header>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php get_template_part('templates/entry-meta'); ?>
</header>
</div>
</div>
</div>
<?php get_template_part('templates/contentblocks'); ?>
<div class="container">
<div class="row">
<div class="col-lg-12">
<?php comments_template('/templates/comments.php'); ?>
</div>
</div>
</div>
</article>
<?php endwhile; ?>
<?php fs_get_template_parts( array( 'templates/footer', 'templates/html-footer' ) ); ?>