-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
86 lines (68 loc) · 2.75 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php get_header(); ?>
<?php get_template_part("/page-templates/common/blog-hero");
?>
<?php
$saneem_layout_class="col-md-8";
$saneem_layout_class_second="col-md-6 col-lg-6 mb-4 mb-lg-6";
if(!is_active_sidebar("sidebar-blog")){
$saneem_layout_class="col-md-12";
$saneem_layout_class_second="col-md-4 col-lg-4 mb-4 mb-lg-4";
};
?>
<section class="ftco-section bg-light">
<div class="container">
<div class="row d-flex">
<?php
if(is_active_sidebar("sidebar-blog")):
?>
<div class="col-md-4">
<?php
if ( is_active_sidebar( "sidebar-blog" ) ) {
dynamic_sidebar( "sidebar-blog" );
}
?>
</div>
<?php endif; ?>
<div class="<?php echo $saneem_layout_class; ?> row">
<?php
while(have_posts()):
the_post();
?>
<div class="<?php echo $saneem_layout_class_second; ?> d-flex ftco-animate">
<div class="blog-entry justify-content-end">
<div class="text p-4 float-right d-block">
<a href="<?php the_permalink();?>">
<?php
if(has_post_thumbnail()){
the_post_thumbnail("large",array("class"=>"img-fluid"));
}
?>
</a>
<h2 class="font-size-regular"><a href="<?php the_permalink(); ?>"><?php echo the_title();?></a></h2>
<div class="meta mb-4"><em><?php echo the_author_posts_link();?></em><span class="mx-2">•</span> <a href="<?php the_permalink(); ?>"><?php echo get_the_date();?></a><span class="mx-2">•</span> <a href="#"><?php echo get_the_tag_list("<span>",", ","</span>");?></a></div>
<p><?php echo wp_trim_words(get_the_content(),30);?></p>
<p><a href="<?php the_permalink();?>"><?php _e('Continue Reading...','jurist');?></a></p>
</div>
</div>
</div>
<?php endwhile;?>
</div>
</div>
</div>
<div class="container paginations">
<div class="row">
<div class="col-md-4"> </div>
<div class="col-md-8">
<?php the_posts_pagination(
array(
screen_reader_text=>" ",
)
);?>
</div>
</div>
</div>
</section>
<?php
get_template_part("/page-templates/common/email");
?>
<?php get_footer();?>