forked from Jack000/expose-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.txt
72 lines (59 loc) · 2.16 KB
/
template.txt
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
<title>Jack's Adventures - {{title}}</title>
<link type="text/css" rel="stylesheet" media="all" href="/font/stylesheet.css" />
<link type="text/css" rel="stylesheet" media="all" href="/global.css" />
<script type="text/javascript">var dirname = "{{dirname}}" </script>
<script src="/json.js"></script>
<script src="/jquery-1.11.0.js"></script>
<script src="/cookie.js"></script>
<script src="/global.js"></script>
<script src="/player/html5media.min.js"></script>
</head>
<body>
<ol id="marker">
{{marker}}
</ol>
<div id="sidebar">
<div class="foreground">
<div id="profile">
<img src="/img/profile.png" alt="my name" />
</div>
<h1>Jack's<br />Adventures</h1>
<ul id="nav">
{{navigation}}
</ul>
</div>
<ul id="control">
<li><span class="monitor icon"></span>
<ul id="resolution">
<li data-res="3840"><a href="#">in 4K</a></li>
<li data-res="2560"><a href="#">in 1440p</a></li>
<li class="active" data-res="1920"><a href="#">in 1080p</a></li>
<li data-res="1280"><a href="#">in 720p</a></li>
<li data-res="1024"><a href="#">mobile</a></li>
</ul>
</li>
<li><a href="#" id="textbutton" class="active"><span class="toggle icon"></span><span class="text">hide text</span></a></li>
<li><a href="#" id="commentbutton"><span class="comment icon"></span>comment</a></li>
<li><a href="#" id="sharebutton"><span class="heart icon"></span>share</a></li>
<li><a href="#" id="download"><span class="download icon"></span>download</a></li>
</ul>
<div class="background"></div>
</div>
<div id="comments">
<a href="#" id="commentclose" class="close"></a>
<div id="disqus_thread"></div>
</div>
<div id="share">
<div class="addthis_sharing_toolbox"></div>
</div>
<div id="main">
{{content}}
</div>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=jack000"></script>
</body>
</html>