blob: 58dd4bf359a66f7ce0520fcb4812ec3ca9fd7fce (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{title}}</title>
<link rel="stylesheet" href="{{ install("css/normalize.css") }}">
<link rel="stylesheet" href="{{ install("css/style.css") }}">
</head>
<body>
<script type="text/x-handlebars">
<h1>{{title}}</h1>
{% raw %}
{{outlet}}
</script>
<script type="text/x-handlebars" id="index">
<div class="box">
<div class="sort">
<h2>Sort</h2>
<button {{action 'sortBy' 'imdbRating'}}>IMDB Rating</button>
<button {{action 'sortBy' 'imdbVotes'}}>IMDB Votes</button>
<button {{action 'sortBy' 'release'}}>Release Year</button>
<button {{action 'sortBy' 'omdbTomato'}}>RT Meter %</button>
<button {{action 'sortBy' 'omdbTomatoRating'}}>RT Rating</button>
</div>
</div>
{{#each movie in arrangedContent}}
<div class="box">
<table>
<tr>
<td class="poster">
{{#if movie.poster}}
<img {{bind-attr src=movie.poster}} />
{{else}}
<span> no image </span>
{{/if}}
</td>
<td class="info">
<div class="title">
{{movie.title}}
</div>
<div class="headline">
<div class="plot">{{movie.plot}}</div>
<div class="consensus">{{movie.omdbTomatoConsensus}}</div>
<table class="details">
{{#if movie.website}}
<tr>
<td colspan="2">
➜ <a {{bind-attr href=movie.website}}>{{movie.website}}</a>
</td>
</tr>
{{/if}}
<tr>
<td colspan="2">
➜ <a {{bind-attr href=movie.linkTmdb}} rel="noreferrer">themoviedb.org</a>
 
➜ <a {{bind-attr href=movie.linkImdb}} rel="noreferrer">imdb.com</a>
 
➜ <a {{bind-attr href=movie.linkLetterboxd}} rel="noreferrer">letterboxd.com</a>
 
➜ <a {{bind-attr href=movie.linkOfdb}} rel="noreferrer">ofdb.db</a>
 
➜ <a {{bind-attr href=movie.linkRotten}} rel="noreferrer">rottentomatoes</a>
 
➜ <span class="imdbid">{{movie.id}}</span>
</td>
</tr>
</table>
<ul class="files">
{{#each file in movie.movieFiles}}
<li>{{filelink file}}</li>
{{/each}}
</ul>
</td>
<td class="ratings">
<table>
<tr><td>IMDB</td><td>{{movie.imdbRating}}</td></tr>
<tr><td>IMDB votes</td><td>{{movie.imdbVotes}}</td></tr>
{{#if movie.omdbTomatoRating}}
<tr><td>RT</td><td>{{movie.omdbTomatoRating}}</td></tr>
{{/if}}
{{#if movie.omdbTomatoUserRating}}
<tr><td>RT User</td><td>{{movie.omdbTomatoUserRating}}</td></tr>
{{/if}}
{{#if movie.omdbTomato}}
<tr><td>Meter</td><td>{{movie.omdbTomato}}%</td></tr>
{{/if}}
{{#if movie.omdbUserTomato}}
<tr><td>Meter User</td><td>{{movie.omdbUserTomato}}%</td></tr>
{{/if}}
</table>
</td>
</tr>
</table>
<div class="box-footer">
{{movie.tagline}}
</div>
</div>
{{/each}}
</script>
{% endraw %}
<script type="text/javascript" src="{{ install("js/libs/all.min.js") }}"></script>
<script type="text/javascript" src="{{ install("js/app.js") }}"></script>
<script type="text/javascript" src="{{ data('dataCb') }}"></script>
</body>
</html>
<!--
vim: tabstop=1 expandtab shiftwidth=1 softtabstop=1:
-->
|