-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
47 lines (29 loc) · 1.29 KB
/
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
47
<?php get_header(); ?>
</div> <!-- end of container-fluid -->
<div class="container" id="blog_page">
<div class="row">
<div class="col-md-12">
<div class="col-md-9">
<?php while(have_posts()):the_post() ?>
<div class="row" id="blog_content">
<?php the_post_thumbnail(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="p_time"><?php the_author()?> | <?php the_time('g:ia,F y');?>
with <?php comments_popup_link('No Comment','1 Comment','% Comments','c_link','Log In to comment');?>
</div>
<p><?php read_more(40); ?>....
<a href="<?php the_permalink(); ?>" class="btn btn-black pull-right">More</a></p>
</div><!-- end of blog_content -->
<?php endwhile;?>
</div><!-- end of col-md-9 -->
<div class="col-md-3" id="blog_sidebar">
<?php dynamic_sidebar('right_sidebar'); ?>
</div><!-- end of blog_sidebar -->
</div>
<div class="row">
<?php custom_pagination(); ?>
</div>
</div>
</div><!-- end of blog_page -->
<!-- Footer -->
<?php get_footer(); ?>