forked from nehalist/gitsta
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsingle.php
More file actions
Latest commit
36 lines (32 loc) · 1.1 KB
/
Copy pathsingle.php
File metadata and controls
36 lines (32 loc) · 1.1 KB
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
<?phpget_header(); ?>
<div class="subhead">
<div class="container">
<h3><small><a href="<?phpechohome_url(); ?>"><i class="fa fa-chevron-left"></i></a></small> <?phpthe_title(); ?></h3>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-10">
<?phpwhile ( have_posts() ) : the_post(); ?>
<?php
get_template_part('content', 'single');
?>
<div class="text-right">
<?php
// Pagination
gitsta_wp_link_pages();
?>
</div>
<?php
// Comments
if(comments_open() || get_comments_number() != '0') {
comments_template();
}
?>
<?phpendwhile; ?>
</div>
<div class="col-md-2">
<?phpget_sidebar(); ?>
</div>
</div>
<?phpget_footer(); ?>