-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
36 lines (33 loc) · 1.52 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
<?php get_header(); ?>
<div id="main">
<div class="blogbg" id="content">
<div class="container">
<div class="row">
<div class="blogLeft col-sm-8">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="blogarticle article">
<h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<div class="blog-header"></div>
<p>
<i style="color: #64B4DC;" class="fa fa-clock-o"></i> <?php the_date('d.m.Y'); ?> <i style="margin-left: 20px; color: #64B4DC;" class="fa fa-pencil" aria-hidden="true"></i> <?php the_author(); ?>
<i style="margin-left: 20px; color: #64B4DC;" class="fa fa-folder-open-o"></i>
<?php the_category(', '); ?>
</p>
<?php the_content(); ?>
</div> <!-- .article -->
<?php endwhile; endif; ?>
<div id="paginate" class="">
<?php
echo paginate_links();
?>
</div>
</div>
<div class="col-sm-4">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div><!-- #content -->
<div class="clear"></div>
</div><!-- #main -->
<?php get_footer(); ?>