-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·50 lines (44 loc) · 1.43 KB
/
index.php
File metadata and controls
executable file
·50 lines (44 loc) · 1.43 KB
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
<?php
/**
* The Javaria Project
* Copyright © 2019
* Michel Noel
* Datalight Analytics
* http://www.datalightanalytics.com/
*
* Creative Commons Attribution-ShareAlike 4.0 International Public License
* By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of
* this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this
* Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your
* acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the
* Licensor receives from making the Licensed Material available under these terms and conditions.
*
* File: index.php
* Last Modified: 8/20/19, 9:04 PM
*/
$document_ready = '';
$jlang_str = [];
$java_scripts[''] = '';
include("config.php");
include('htmlwriter.php');
include('session.php');
?>
<!DOCTYPE HTML>
<html lang="<?php mlang_str('lang'); ?>">
<?php include('header.php')?>
<body onresize='resizecontentheight()'>
<?php
include('navbar.php');
include('modals.php');
include('jlang.php');
?>
<!--body-->
<div id="content" class="container-fluid" >
<div class="row text-center" >
<div id="middle-block" class="col-md-16 center-block">
</div>
</div>
</div>
<?php include('footer.php'); ?>
</body >
</html>