-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (33 loc) · 1.02 KB
/
index.php
File metadata and controls
38 lines (33 loc) · 1.02 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
<?php
require($_SERVER['DOCUMENT_ROOT'] . '/includes/globals.php');
$title = $site_title;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title><?php echo $title; ?></title>
<?php require($_SERVER['DOCUMENT_ROOT'] . '/includes/head.php'); ?>
<meta name="og:title" content="<?php echo $title; ?>">
<style>
#index {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div id="wrap">
<div id="webrings">
</div>
<div id="index">
<h1>Flit</h1>
<a href="/index2.php"><img src="/images/bird-pfp.png" alt="A eurasian magpie" height="200" width="200"></a>
<p>Bap the bird to enter...</p>
</div>
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php');?>
</div>
</body>
</html>