-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
39 lines (25 loc) · 862 Bytes
/
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
<?php
include("./admin/class/function.php");
$obj = new adminBlog();
$getCat = $obj->display_category();
?>
<?php include_once("./includes/head.php"); ?>
<body>
<!-- ***** Preloader ***** -->
<?php include_once("./includes/preloader.php"); ?>
<!-- Header -->
<?php include_once("./includes/header.php"); ?>
<!-- Page Content -->
<!-- Banner -->
<?php include_once("./includes/banner.php"); ?>
<?php include_once("./includes/cta.php"); ?>
<section class="blog-posts">
<div class="container">
<div class="row">
<?php include_once("./includes/blogpost.php"); ?>
<?php include_once("./includes/sidebar.php"); ?>
</div>
</div>
</section>
<?php include_once("./includes/footer.php"); ?>
<?php include_once("./includes/script.php"); ?>