-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.php
28 lines (25 loc) · 870 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
<!--
Powered by DarkCoreCMS
Website: http://mmltools.com
Author: Max aka (Darksoke)
-->
<?php define("DARKCORECMS", "TRUE");
require_once "engine/global.php";
if(file_exists("engine/configuration.php"))
require_once "engine/configuration.php";
require_once "engine/functions.php";
echo '<!DOCTYPE html>';
echo '<html lang="en">';
echo '<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->';
echo '<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->';
echo '<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->';
echo '<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->';
include "inc/header.php";
echo "<body>";
if(!file_exists("engine/configuration.php"))
include "inc/install/index.php";
else
include "inc/registration_form.php";
include "inc/footer.php";
echo "</body>";
echo "</html>";