blob: 08a419782a324a88ec97657ee7e9c771ec149dc6 (
plain)
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
|
<?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>
<window>
<?php render_header(); ?>
<marquee behavior="scroll" direction="left">
<a href="/emotes.php">/// Looking for that TinyEmotes instance? Click here! ///</a>
</marquee>
<?php render_tabs(); ?>
<main>
<p>Please stand by.</p>
</main>
</window>
</body>
</html>
|