-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.php
More file actions
183 lines (174 loc) · 10 KB
/
demo.php
File metadata and controls
183 lines (174 loc) · 10 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<?php
/*
* Respondint Solutions LLC
* Copyright (C) 2015 Isaiah Marc Sanchez <isaiah.marc.sanchez@gmail.com> - All Rights Reserved.
*
* This file is proprietary and confidential.
*
* This file is property of Isaiah Marc Sanchez and is not meant to be distributed or duplicated, privately or publicly.
* Unauthorized distributing, duplicating, or using of this file, via any medium, is strictly prohibited and is
* in violation of Article 1, Section 1, Clause 8 of the United States Constitution and will be pursued.
*
* If you have authorized access to this code, please note it may contain private, important, and sensitive information
* that can never be shared or copied under any circumstances.
*
* This code is not licensed with the GNU Affero General Public License <http://www.gnu.org/licenses/agpl-3.0.html>
* or the MIT License <http://opensource.org/licenses/MIT>.
*
* This code is a heavily modified branch of the PHP Framework "Laravel" written by Taylor Otwell <taylorotwell@gmail.com>
* that was licensed with the MIT License.
*/
function compress($buffer) {
$buffer =
preg_replace(
array(
'/\>[^\S ]+/s',
'/[^\S ]+\</s',
'/(\s)+/s'
),
array(
'>',
'<',
'\\1'
),
$buffer
);
// Comments
$buffer = preg_replace('!/\*.*?\*/!s', '', $buffer);
$buffer = preg_replace('/\n\s*\n/', "\n", $buffer);
$buffer = preg_replace('/^<!--(?!\[[^]+])(?:(?!-->).)*-->$/', '', $buffer);
// Trim Each Line
$buffer = preg_replace('/^\\s+|\\s+$/m', '', $buffer);
// Clear Spaces
$buffer = str_replace(array("\r\r\r", "\r\r", "\r\n", "\n\r", "\n\n\n", "\n\n"), "\n", $buffer);
// Clear Tabs
$buffer = str_replace(array("\t\t\t", "\t\t", "\t\n", "\n\t"), "\t", $buffer);
// Clear Blank Spaces
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $buffer);
// Clear Non-breaking Spaces
$buffer = str_replace(" ", " ", $buffer);
$buffer = str_replace(" ", " ", $buffer);
return $buffer;
}
ob_start('compress');
define('URL', 'https://itsturnt.com/');
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<script type="text/template">"I AM WATCHING YOU."</script>
<noscript><meta http-equiv="refresh" content="0; URL=<?=URL?>nojs.php"></noscript>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="type=text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta http-equiv="X-Frame-Options" content="deny">
<meta name="robots" content="index,follow">
<meta name="referrer" content="default" id="meta_referrer">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="shortcut icon" href="<?=URL?>favicon.png">
<title>Turnt</title>
<meta name="Author" content="Isaiah Marc Sanchez">
<meta name="description" content="">
<meta name="keywords" content="">
<meta property="og:title" content="">
<meta property="og:type" content="website">
<meta property="og:url" content="<?=URL?>">
<meta property="og:image" content="<?=URL?>logo.png">
<meta property="og:site_name" content="Turnt">
<meta property="og:description" content="">
<link rel="apple-touch-icon" sizes="57x57" href="<?=URL?>access/images/icons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="<?=URL?>access/images/icons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="<?=URL?>access/images/icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="<?=URL?>access/images/icons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="<?=URL?>access/images/icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="<?=URL?>access/images/icons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="<?=URL?>access/images/icons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="<?=URL?>access/images/icons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="<?=URL?>access/images/icons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="<?=URL?>access/images/icons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="<?=URL?>access/images/icons/favicon-194x194.png" sizes="194x194">
<link rel="icon" type="image/png" href="<?=URL?>access/images/icons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="<?=URL?>access/images/icons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="<?=URL?>access/images/icons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="<?=URL?>access/images/icons/manifest.json">
<meta name="apple-mobile-web-app-title" content="Turnt">
<meta name="application-name" content="Turnt">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="<?=URL?>access/images/icons/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<link href='https://fonts.googleapis.com/css?family=Comfortaa:400,300,700|Roboto:400,500,300|Roboto+Condensed:300,400,700|Roboto+Mono:400,300,500|Roboto+Slab:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="<?=URL?>access/libs/normalize/normalize.css">
<link rel="stylesheet" href="<?=URL?>access/libs/bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="<?=URL?>access/libs/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="<?=URL?>access/libs/semantic-ui/dist/semantic.css">
<link rel="stylesheet" href="<?=URL?>access/libs/vertical-rhythm.min.css">
<script src="<?=URL?>access/libs/modernizr/modernizr.min.js"></script>
<style>
@media (min-width : 320px) and (max-width : 480px) {
}
@media (max-width : 1199px) {
.content p{padding-top:0px!important;}
h1.title{font-size:6em!important;}
}
html,body {background:#f5f8fa;color:#111;}
h1.title{color:#D53D0C;font-family: 'Comfortaa', cursive;font-weight:300;font-size:10em;line-height: 1;}
small.sub{color:#880606;font-family: 'Roboto Condensed', sans-serif;font-weight:300;font-size:0.30em;text-transform: none;}
.content p{padding-top:80px;font-family: 'Roboto', sans-serif;font-weight:300;font-size:1.5em;}
p{font-family: 'Roboto', sans-serif;font-weight:300;font-size:2.5em;}
div.ui.massive.list{text-align:left;}
</style>
</head>
<body>
<div class="container pt-40 pb-40 text-center">
<h1 class="title mb-40">turnt<!--<br><small class="sub">Live Life Like You Should</small>--></h1>
<form class="ui form">
<div class="ui massive input mb-40">
<input type="text" placeholder="Search a Location">
</div>
</form>
<div class="ui segment text-left" style="padding:0;">
<div class="ui middle aligned massive divided list">
<div class="item" style="padding:40px 20px;">
<div class="right floated content">
<i class="comment outline icon"></i> <small>17</small> <i class="sort icon"></i> <small>28</small>
</div>
<div class="content">
<i class="red circle thin icon"></i> Office Hoes and CEOs TNC
</div>
</div>
<div class="item" style="padding:40px 20px;">
<div class="right floated content">
<i class="comment outline icon"></i> <small>36</small> <i class="sort icon"></i> <small>37</small>
</div>
<div class="content">
<i class="red circle thin icon"></i> BLOC
</div>
</div>
<div class="item" style="padding:40px 20px;">
<div class="right floated content">
<i class="comment outline icon"></i> <small>07</small> <i class="sort icon"></i> <small>-6</small>
</div>
<div class="content">
<i class="red circle thin icon"></i> Off-Campus-Moreno
</div>
</div>
<div class="item" style="padding:40px 20px;">
<div class="right floated content">
<i class="comment outline icon"></i> <small>12</small> <i class="sort icon"></i> <small>18</small>
</div>
<div class="content">
<i class="red circle thin icon"></i> DNA Night TAP
</div>
</div>
</div>
</div>
</div>
<footer class="container text-center pt-40 pb-40">
<small>Created by <a href="https://respondint.com">Respondint Solutions LLC</a>.</small>
</footer>
</body>
</html>