-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
53 lines (29 loc) · 1009 Bytes
/
single.php
File metadata and controls
53 lines (29 loc) · 1009 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
49
50
51
52
53
<?php get_header(); ?>
<section id="content">
<div class="wrap-content zerogrid">
<div class="row block03">
<div class="col-2-3">
<div class="wrap-col">
<?php while( have_posts() ): the_post(); ?>
<article>
<?php the_post_thumbnail(); ?>
<h2><a href="#"> <?php the_title(); ?> </a></h2>
<div class="info">[By <?php the_author(); ?> on <?php the_time('F d, Y'); ?> with <?php comments_popup_link( 'No comments', '1 Comments', '% Comments', 'zboom', 'Comments Off' ); ?> ]</div>
<?php the_content(); ?>
<div class="comment">
Your email address will not be published. Required fields are marked *
<?php comments_template(); ?>
</div>
</article>
<?php endwhile; ?>
</div>
</div>
<div class="col-1-3">
<div class="wrap-col">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>