-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
46 lines (35 loc) · 924 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
40
41
42
43
44
45
46
<?php
//debug on
ini_set('display_errors', 1);
//boolean
include_once 'app/includes/boolean.php';
/*Fetch API Data */
//include api functions
include "app/includes/api_fetch.php";
// Home Page Data //
$home = api_fetch($api_home,$api_auth);
$pr = 'mp_';
/*Create template parts */
include_once 'app/views/templates/default/html/html.php';
include "header.php";
$pr = 'mp_';
//Header Area
$header = headArea($home,$pr,$home,$pr);
//Meta
$meta_tag = metaData($pr,$home);
$meta_title = metaTitle($pr,$home);
//Notify Announcement
$notify = notify($pr,$home);
//Feature areas
include "app/views/templates/default/templates-sections/ts_feature-area.php";
$feature = feature_area($home,$pr);
//Testimonials
include 'testimonial.php';
//Footer
include "footer.php";
//include views
include("app/views/v_header.php");
include("app/views/v_nav.php");
include("app/views/v_index.php");
include("app/views/v_footer.php");
?>