forked from kennethreitz/wordpress-theme-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsingle.php
More file actions
23 lines (22 loc) · 786 Bytes
/
single.php
File metadata and controls
23 lines (22 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php get_header(); ?>
<div class="row">
<div id="content" class="span10">
<?php if (have_posts()): while (have_posts()): the_post(); ?>
<div class="post">
<h1><a href="<?php the_permalink() ?>" rel="permalink"><?php the_title(); ?></a></h1>
<div class="post-content">
<?php echo the_content(); ?>
</div>
<?php if(comments_open()): ?>
<div id="comments">
<?php comments_template(); ?>
</div>
<?php endif; ?>
</div><!--#end post-->
<?php endwhile; endif; ?>
</div><!--#end content -->
<div class="span2">
<?php get_sidebar(); ?>
</div><!--#end sidebar -->
</div>
<?php get_footer(); ?>