-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
67 lines (67 loc) · 2.6 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/*
* Template Name: Blog Page Template
* Description: A Page Template for Blog Page.
*/
?>
<?php get_header('blog'); ?>
<!-- Start blog banner section -->
<section id="blog-banner">
<img src="<?php echo esc_url(get_theme_mod('blogbanner_image',get_template_directory_uri() . '/assets/images/blog-banner.jpg')); ?>" alt="img">
<div class="blog-overlay">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="blog-banner-area">
<h2><?php echo esc_html__('Blog','freelancer-agency'); ?></h2>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End blog banner section -->
<!-- Start blog section -->
<section id="blog">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="blog-area">
<div class="row">
<div class="col-lg-8 col-md-7 col-sm-12">
<div class="blog-left blog-archive">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- Start single blog post -->
<article class="single-from-blog">
<figure>
<?php the_post_thumbnail('post-thumbnail'); ?>
</figure>
<div class="blog-title">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p>Posted by <a href="#" class="blog-admin"><?php the_author(); ?></a> on <span class="blog-date"><?php the_date(); ?></span></p>
</div>
<p><?php the_excerpt(); ?></p>
<div class="blog-footer">
<a href="#"><span class="fa fa-comment"></span><?php comments_number(); ?></a>
<a href="#"><span class="fa fa-thumbs-o-up"></span>35 Likes</a>
</div>
</article>
<!-- End single blog post -->
<?php endwhile; endif; ?>
<!--Start Blog pagination -->
<?php freelancer_agency_search_return_nothing(); ?>
<nav>
<?php freelancer_agency_posts_pagination(); ?>
</nav>
<!-- End blog pagination -->
</div>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End blog section -->
<?php get_footer(); ?>