-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
46 lines (39 loc) · 883 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
43
44
45
46
<?php get_header(); ?>
<?php
if (have_posts()):
while (have_posts()): the_post();
?>
<div class="pad-large"></div>
<div class="content-page single">
<section class="body">
<div class="row clearfix">
<div class="line"></div>
<div class="columns medium-4 title-area">
<a class="back">
<i class="fa fa-angle-left"></i>
back
</a>
<div class="title">
<h3><?php the_title(); ?></h3>
</div>
<div class="date">
<h5><?php include "inc/meta.php"; ?></h5>
</div>
<div class="share">
<h5>share this</h5>
<?php include "inc/share.php"; ?>
</div>
</div>
<div class="columns medium-8 content-area">
<?php the_content(); ?>
</div>
</div>
</section>
</div>
<div class="pad-large"></div>
<?php
endwhile;
endif;
wp_reset_query();
?>
<?php get_footer(); ?>