-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (102 loc) · 4.61 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#333333"/>
<meta name="description" content="Track your favourite shows and be always up to date. It automatically saves your added tv shows in your browser - no need to sign up!">
<title>showmaniac | track your favourite tv shows</title>
<link rel="search" type="application/opensearchdescription+xml" title="showmaniac" href="/opensearch.xml" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400" />
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/"><img src="/images/logo.png" alt="showmaniac"></a>
</div>
</div>
</nav>
<div class="container">
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<hr class="gap">
<div class="row text-center">
<div class="col-sm-4">
<i class="fa fa-4x green fa-heart"></i>
<h2>Add your<br>favourite TV shows</h2>
<p class="visible-xs-block"> </p>
</div>
<div class="col-sm-4">
<i class="fa fa-4x green fa-check-circle"></i>
<h2>Watch latest episode and mark it as seen</h2>
<p class="visible-xs-block"> </p>
</div>
<div class="col-sm-4">
<i class="fa fa-4x green fa-calendar"></i>
<h2>See when next episode is coming up</h2>
</div>
</div>
<hr class="gap">
<h1 class="text-center">Features</h1>
<p> </p>
<div class="row">
<div class="col-sm-7">
<hr class="gap hidden-xs">
<h2>Too many shows?</h2>
<h4>Use the toggle button at top, to see the shows you have to watch!</h4>
</div>
<div class="col-sm-4 text-center">
<img src="/images/seen-toggle.gif" class="img-responsive" alt="shows to watch">
</div>
</div>
<p> </p>
<div class="row">
<div class="col-sm-7">
<p> </p>
<h2>Change last seen episode</h2>
<h4>Marking the latest episode as seen is one thing. The other thing is catching up to the latest one!</h4>
</div>
<div class="col-sm-5 col-md-4 col-xs-8">
<br><br>
<img src="/images/catch-up.png" class="img-responsive" alt="Catch up to the latest episode">
</div>
</div>
<p> </p>
<div class="row">
<div class="col-sm-7">
<p> </p><p> </p>
<h2>Find new shows</h2>
<h4>
Browse <a href="/popular">popular shows</a> or recommendations based on your added shows!<br>
If you login with Facebook, you can also choose TV shows you liked.
</h4>
<!-- or shows that are aired today in different countries. -->
</div>
<div class="col-sm-5 col-md-4 col-xs-8">
<p> </p>
<img src="/images/find-shows.png" class="img-responsive" alt="Recommendations">
</div>
</div>
<!-- <ol class="text-muted">
<li>Tracks the <b>PREVIOUS and NEXT air dates</b><br>of your added shows.</li>
<li><b>Syncs automatically</b><br>the next time you open showmaniac.</li>
<li>Just <b>create an account</b><br>if you want to sync your added shows between different browsers or devices.</li>
</ol> -->
</div>
</body>
</html>