blob: 974c929c83293c1611d459f8197ab807c64f2c17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/lib/partials.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/lib/config.php';
?>
<!DOCTYPE html>
<html>
<head>
<title><?= INSTANCE_NAME ?></title>
<link rel="stylesheet" href="static/style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<?php render_header(); ?>
<main>
<marquee>!!! Under construction !!!</marquee>
<p><a href="/emotes.php">Looking for TinyEmotes instance?</a></p>
</main>
</body>
</html>
|