-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathindex.php
38 lines (31 loc) · 846 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
<?php
// Allow the config
define('__CONFIG__', true);
// Require the config
require_once "inc/config.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="follow">
<title>Page Title</title>
<base href="/" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.24/css/uikit.min.css" />
</head>
<body>
<div class="uk-section uk-container">
<?php
echo "Hello world. Today is: ";
echo date("Y m d");
?>
<p>
<a href="/login.php">Login</a>
<a href="/register.php">Register</a>
</p>
</div>
<?php require_once "inc/footer.php"; ?>
</body>
</html>