-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.php
55 lines (49 loc) · 2.09 KB
/
blog.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
<?php include "header.php" ?>
<?php include "dbConnection.php" ?>
<?php include "articlesDisplayQuerys.php" ?>
<!-- ----------------------BODY------------------ -->
<div class="container-fluid pb-4 pt-4 paddding">
<div class="container paddding">
<div class="row mx-0">
<div class="col-md-8 animate-box" data-animate-effect="fadeInLeft">
<div>
<div class="fh5co_heading fh5co_heading_border_bottom py-2 mb-4">News</div>
</div>
<?php querys::indexNewsArticles(); ?>
</div>
<!-- Dinamyc Tags -->
<div class="col-md-3 animate-box" data-animate-effect="fadeInRight">
<div>
<div class="fh5co_heading fh5co_heading_border_bottom py-2 mb-4">Categories</div>
</div>
<div class="clearfix"></div>
<div class="fh5co_tags_all">
<?php querys::displayCategories(); ?>
</div>
<!-- MOST POPULAR -->
<div>
<div class="fh5co_heading fh5co_heading_border_bottom pt-3 py-2 mb-4">Last Visited</div>
</div>
<div class="row pb-3">
<?php querys::last_visited_posts(); ?>
</div>
</div>
</div>
<div class="row mx-0">
<div class="col-12 text-center pb-4 pt-4">
<?php querys::pagination(); ?>
</div>
</div>
</div>
</div>
<div class="container-fluid pb-4 pt-5">
<div class="container animate-box">
<div>
<div class="fh5co_heading fh5co_heading_border_bottom py-2 mb-4">Recommended for you</div>
</div>
<div class="owl-carousel owl-theme" id="slider2">
<?php querys::recommended_posts_single();?>
</div>
</div>
</div>
<?php include "footer.php" ?>