-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
120 lines (83 loc) · 2.78 KB
/
404.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
ob_start ();
error_reporting(E_ALL);
ini_set('display_errors', true);
ini_set('html_errors', false);
$pageTitle = 'Studioware';
?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><!--TITLE--></title>
<link href="/files/main.css" rel="stylesheet" type="text/css"/>
<link rel="shortcut icon" href="logo_take1-s-favicon.png"/>
<meta name="description" content="Studioware - bringing audio to Slackware."/>
<meta name="keywords" content="studioware,slackware,audio,sound,recording"/>
<script language="javascript" type="text/javascript" src="files/general_crap.js"></script>
</head>
<body style="height:100%">
<div id="top"></div>
<center>
<div id="main-wrapper">
<div id="head-wrapper">
<!--
<h1 class="banner">Studioware</h1>
<br />
<br />
-->
</div>
<div id="link-wrapper">
<a title="Home" href="http://www.studioware.org" class="toplink">Home</a> |
<a title="Latest News" href="index.php?news" class="toplink">Latest News</a> |
<a title="Applications List" href="http://www.studioware.org/wiki/index.php?title=Application_List" class="toplink">Applications List</a> |
<a title="SlackBuilds" href="slackbuilds" class="toplink">SlackBuilds</a> |
<a title="Packages" href="packages" class="toplink">Packages</a> |
<a title="Studiopkg" href="studiopkg" class="toplink">Studiopkg</a> |
<a title="Sekg" href="sepkg" class="toplink">Sepkg</a> |
<a title="Wiki" href="wiki" class="toplink">Wiki</a> |
<a title="Links" href="index.php?links" class="toplink">Links</a>
</div>
<br /><br />
<hr />
<div style="display: table; height: 90%; #position: relative;
width: 100%;overflow: hidden;">
<div style=" #position: absolute; #top: 50%;display: table-cell;
vertical-align: middle;width: 100%;">
<div style=" #position: relative; #top: -50%;width: 100%;">
<br />
<br />
<br />
<br />
<br />
<h1 style="font-size: 80px; margin: auto; text-align: center;
height:90%; vertical-align: middle;width: 100%;
postition: relative; top: 50%; color: gray;">CRUNCH!
<span style="font-size:15px;">(404)</span></h1>
<br />
<br />
<br />
<br />
<br />
</div>
</div>
</div>
<center>
<a href="" class="toplink" style="color:#777"><b>Top</b></a>
</center>
<div id="foot-wrapper">
<?php
include("footer.php");
?>
</div>
</div>
</center>
</body>
</html>
<?php
$pageContents = ob_get_contents ();
ob_end_clean ();
echo str_replace ('<!--TITLE-->', $pageTitle, $pageContents);
?>