diff options
| author | root <root@lalalizard.com> | 2012-11-26 12:05:40 -0500 |
|---|---|---|
| committer | root <root@lalalizard.com> | 2012-11-26 12:05:40 -0500 |
| commit | ef51b60c6481254d88c5fc3c34f4127b7f881a58 (patch) | |
| tree | 42a9596a7d53951d2a10f60fea4c2854fc9348af /frontend/templates/topvideos.html | |
| parent | ddc5b25b4a47ef8175aced9c06fc1767d004e826 (diff) | |
Frontend static/ folder
Diffstat (limited to 'frontend/templates/topvideos.html')
| -rw-r--r-- | frontend/templates/topvideos.html | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/frontend/templates/topvideos.html b/frontend/templates/topvideos.html new file mode 100644 index 0000000..613faa2 --- /dev/null +++ b/frontend/templates/topvideos.html @@ -0,0 +1,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 }} +var todayVideoQueueTitle = "Today" +var yesterdayVideoQueue = {{ top_yesterday }} +var yesterdayVideoQueueTitle = "Yesterday" +var topVideoQueue = {{ top_alltime }} +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> + |
