-
Notifications
You must be signed in to change notification settings - Fork 0
/
results.html
52 lines (51 loc) · 1.65 KB
/
results.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
<html>
<head>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
<script>
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<title>EmojiRank</title>
<style>
#table_by_like, #table_by_hate {
float:left;
}
</style>
<script src="/results.js"></script>
</head>
<body>
<script src="/analytics.js"></script>
<header>
<div id="logo"><a href="/"><img src="/assets/logo.svg" alt="EmojiRank" width="200"></a></div>
</header>
<main>
<h1 id="emoji_name"></h1>
<div id="no_votes_warning" style="display: none;">
There are no votes for this emoji yet, why don't you <a class="vote_link" href="/">cast the first vote</a>?
</div>
<table id="glyph_rows">
</table>
<div style="display: none;">
<table id="table_by_like">
<tr>
<td>Rank</td><td>Image</td><td>Vendor</td><td>Likes</td>
</tr>
</table>
<table id="table_by_hate">
<tr>
<td>Rank</td><td>Image</td><td>Vendor</td><td>Hates</td>
</tr>
</table>
</div>
</main>
<footer>
<div id="option"><a class="vote_link" href="/">Vote</a></div>
<div id="footer_text"><div class="addthis_inline_share_toolbox"></div></div>
</footer>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-58a70a324daea26b"></script>
</body>
</html>