-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
46 lines (38 loc) · 988 Bytes
/
index.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(); ?>
<div class="container" id="maincontent">
<div class="row blog_content">
<div class="col-sm-9">
<div class=" divcontent">
<?php while(have_posts()):the_post() ?>
<div class="media">
<div class="media-left">
<a href="#">
<?php the_post_thumbnail(); ?>
</a>
</div>
<div class="media-body">
<h4 class="media-heading">
<a href="<?php the_permalink(); ?>">
<?php the_title() ?>
</a>
</h4>
<p><?php details(30); ?></p>
<a href="#" class="btn btn-success botn">Details</a>
</div>
</div>
<?php endwhile; ?>
</div>
<div class="text-center">
<?php
custom_pagination();
?>
</div>
</div>
<div class="col-sm-3">
<div class="right_sidebar">
<?php dynamic_sidebar('left_sidebar'); ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>