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
|
{% load static %}
{% get_static_prefix as STATIC_PREFIX %}
<!doctype html>
<html>
<head>
<title>TOP VIDEOS ON SCANNERJAMMER</title>
<link rel="shortcut icon" href="{{ STATIC_PREFIX }}favicon.ico" />
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<meta property="og:title" content="Top Videos on ScannerJammer"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="{{SERVER_HOST}}:{{SERVER_PORT}}/"/>
<meta property="og:image" content="{{ STATIC_PREFIX }}img/plant.gif"/>
<meta property="og:site_name" content="ScannerJammer"/>
<meta property="og:description" content="Youtube video chat"/>
<meta property="fb:admins" content="100001923956223,1709246"/>
<meta name="description" content="Youtube video chat" />
<link href="{{ STATIC_PREFIX }}css/sasscss/profile.css" media="screen, projection" rel="stylesheet" type="text/css" />
<link href="{{ STATIC_PREFIX }}css/sasscss/top.css" media="screen, projection" rel="stylesheet" type="text/css" />
<style type="text/css">
body
{
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.11, rgb(49,18,150)),
color-stop(0.67, rgb(143,38,255)),
color-stop(0.84, rgb(157,66,255))
);
background-image: -moz-linear-gradient(
center bottom,
rgb(49,18,150) 11%,
rgb(143,38,255) 67%,
rgb(157,66,255) 84%
);
}
</style>
</head>
<body>
<section id="logo">
<a href="/"><img src="{{ STATIC_PREFIX }}img/scanjam-title.gif" width="347" height="44" id="scanjam" border="0" /></a>
<h1 id="header">TOP VIDEOS</h1>
</section>
<section id="logobg"></section>
<section id="flower"><img src="{{ STATIC_PREFIX }}img/flower-red.gif" height="400" /></section>
<section id="plant1"><img src="{{ STATIC_PREFIX }}img/plant.gif" height="700" /></section>
<section id="plant2"><img src="{{ STATIC_PREFIX }}img/plant.gif" height="700" /></section>
<section id="player">
<section id="projector">
<section id="screen"></section>
<section id="ytscreen"></section>
<section id="video-title"></section>
</section>
<nav id="controls">
<button id="prev"><<</button>
<button id="pause">||</button>
<button id="next">>></button>
<button id="scan">SCAN</button>
<button id="like">LIKE</button>
<button id="fullscreen">FULLSCREEN</button>
<a id="video-link" target="_blank">[x]</a>
<span id="sharebutton" class="st_sharethis" st_url="http://scannerjammer.com/" st_title="Scanner Jammer"></span>
</nav>
</section>
<section id="playlistbg"></section>
<section id="playlist">
<ol id="queueLinks"></ol>
<ul id="queue">
</ul>
</section>
<div id="sitez">
<div>
<a href="/top/">top</a> .
<a href="/directory/">directory</a> .
</div>
<div id="likebutton">
<fb:like href="{{ SERVER_HOST }}:{{ SERVER_PORT }}/" layout="button_count" show_faces="false" width="90" font=""></fb:like>
</div>
</div>
<section class="cloudleft"></section>
<section class="cloudright"></section>
<section class="cloudleft shimmer"></section>
<section class="cloudright shimmer"></section>
<section class="cloudleft shimmer2"></section>
<section class="cloudright shimmer2"></section>
<section id="bg">
</section>
<section id="msg"></section>
<section id="plea">
please enable javascript
</section>
</body>
<script type="text/javascript">document.getElementById("plea").style.display="none"</script>
<script type="text/javascript">
serverHost = "{{ SERVER_HOST }}"
serverPort = {{ SERVER_PORT }}
var todayVideoQueue = {{ top_today|safe }}
var todayVideoQueueTitle = "Today"
var yesterdayVideoQueue = {{ top_yesterday|safe }}
var yesterdayVideoQueueTitle = "Yesterday"
var topVideoQueue = {{ top_alltime|safe }}
var topVideoQueueTitle = "All Time"
</script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/jquery.md5.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/swfobject.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/soundmanager2.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/debug.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/api.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/auth.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/like.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/chat.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/player.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/vimeo.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/youtube.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/soundcloud.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/audio.js"></script>
<script type="text/javascript" src="{{ STATIC_PREFIX }}js/top.js"></script>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
</html>
|