-
Notifications
You must be signed in to change notification settings - Fork 15
/
single.php
42 lines (23 loc) · 945 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
33
34
35
36
37
38
39
40
41
42
<?php get_header(); ?>
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<header class="row">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<div class="row">
<div class="eight columns entry-content">
<?php the_content(); ?>
<footer>
<p class="post-<?php the_ID(); ?>-meta">Posted on: <?php the_time('F jS, Y') ?> | Posted in: <?php the_category(', ') ?></p>
</footer>
<?php //comments_template(); ?>
</div> <!-- entry-content -->
<aside id="sidebar" class="four columns" role="complementary">
<div class="container">
<?php dynamic_sidebar("Blog Sidebar"); ?>
</div>
</aside><!-- /#sidebar -->
</div> <!-- row -->
</article>
<?php endwhile; // End the loop ?>
<?php get_footer(); ?>