-
Notifications
You must be signed in to change notification settings - Fork 25
/
sample_homepage.html
177 lines (153 loc) · 4.91 KB
/
sample_homepage.html
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
<!DOCTYPE html>
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<link rel="icon" type="image/jpeg" href="images/logo.png" />
<!-- Site Properities -->
<title>TV Series</title>
<meta name="description" content="An aggregator of TV Series' Episode Synopsis list." />
<link rel="stylesheet" type="text/css" class="ui" href="dist/semantic.min.css">
<link rel="stylesheet" type="text/css" href="stylesheets/docs.css">
<link rel="stylesheet" type="text/css" href="stylesheets/rtl.css">
<link rel="stylesheet" type="text/css" href="stylesheets/home.css">
<link rel="stylesheet/less" type="text/css" href="src/definitions/elements/button.less" />
</head>
<body id="example" class="index" ontouchstart="">
<div class="pusher">
<div class="full height">
<div class="following bar">
<div class="ui container">
<div class="ui large inverted secondary network menu">
<div class="item">
<div class="ui logo shape">
<div class="sides">
<div class="active ui side">
#TV_SERIES
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="zoomed masthead segment" style="background: black;">
<div class="ui container">
<div class="introduction">
<h1 class="ui inverted header">
<span class="library">
TV SERIES
</span>
<span class="tagline">
<i class="code icon"></i> by <a href="github.com">@athityakumar</a>
</span>
</h1>
<div class="ui hidden divider"></div>
<a href="#go" class="ui huge inverted scrolling button">
<i class="send outline icon"></i> Get Started
</a>
<a href="https://github.com/athityakumar/tvseries" class="ui huge inverted scrolling button">
<i class="github icon"></i> View GitHub Repository
</a>
</div>
</div>
</div>
<div id="go" class="ui vertical stripe intro segment">
<div class="ui center aligned container">
<div class="ui special cards">
<div class="ui centered card">
<div class="image">
<img src="images/series/flash.png" style="height: 250px;">
<div class="ui black ribbon label">
<i class="clock icon"></i> 2014 - now
</div>
</div>
<div class="content">
<a class="header">The Flash</a>
<div class="meta">
<div class="ui label">
Seasons
<div class="detail">3</div>
</div>
<div class="ui label">
Episodes
<div class="detail">53</div>
</div>
</div>
</div>
<a href="sample_series.html"><div class="ui bottom attached button blue">
<i class="unhide icon"></i>
View more
</div></a>
</div>
</div>
</div>
</div>
</div>
<div class="ui black inverted vertical footer segment">
<div class="ui center aligned container">
<div class="ui horizontal inverted small divided link list">
<a class="item" href="https://semantic-ui.com/" target="_blank">Built with Semantic-UI</a>
</div>
</div>
</div>
<script>
(function () {
var
eventSupport = ('querySelector' in document && 'addEventListener' in window)
jsonSupport = (typeof JSON !== 'undefined'),
jQuery = (eventSupport && jsonSupport)
? 'javascript/library/jquery.min.js'
: 'javascript/library/jquery.legacy.min.js'
;
document.write('<script src="' + jQuery + '"><\/script>');
}());
</script>
<script type="text/javascript">
window.liveSettings = {
api_key : '9ede3015b9f84c1aabc81ab839c55d74',
parse_attr : [
'data-title',
'data-content'
],
detectlang : false,
autocollect : true,
ignore_tags : ['i', 'code', 'pre'],
parse_attr : ['data-title', 'data-content', 'data-text'],
ignore_class : ['code', 'anchor']
};
</script>
<script type="text/javascript" src="http://cdn.transifex.com/live.js"></script>
<script src="javascript/library/highlight.min.js"></script>
<script src="javascript/library/easing.min.js"></script>
<script src="dist/semantic.min.js"></script>
<script src="javascript/docs.js"></script>
<script src="javascript/home.js"></script>
<script>
window.less = {
async : true,
environment : 'production',
fileAsync : false,
onReady : false,
useFileCache : true
};
$(function() {
$('a[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
<script src="javascript/library/less.min.js"></script>
</body>
</html>