-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomingsoon.php
executable file
·47 lines (36 loc) · 1.44 KB
/
comingsoon.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
<?php require_once './bootstrap.php';
#require_once 'FirePHPCore/fb.php';
// TRUE = disable all output buffering,
// and automatically flush()
// immediately after every print or echo
ob_implicit_flush(TRUE);
?><!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>total-impact.org</title>
<link rel="stylesheet" type="text/css" href="./ui/totalimpact.css" />
<script type="text/javascript">
//Google Analytics code
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23384030-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="header">
<a href="./index.php"><img src="./ui/img/ti_logo.png" alt="total-impact" width='200px' /></a>
</div>
<div id="body">
This feature is coming soon!
</div>
<div id="footer">
<p>Concept originally hacked at the <a href="http://www.beyond-impact.org/">Beyond Impact Workshop</a>. <a href="https://github.com/mhahnel/total-impact">Source and contributors.</a></p>
</div>
</body>
</html>