-
-
Notifications
You must be signed in to change notification settings - Fork 452
/
index.html
78 lines (73 loc) · 3.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href='/fav.png' rel='shortcut icon'>
<meta content="width=device-width, initial-scale=1.0, user-scalable=no" name="viewport">
<meta content="Emoji searcher" property="og:title">
<meta content="Emoji searcher" property="title">
<meta content="Find the emoji that echoes your heart using keywords! No need to remember all the names of emoji." property="description">
<meta content="Find the emoji that echoes your heart using keywords! No need to remember all the names of emoji." property="og:description">
<meta content="https://emoji.muan.co/appicon.png" property="og:image">
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Emoji searcher" />
<title>Emoji searcher</title>
<link rel="apple-touch-icon-precomposed" sizes="64x64" href="/appicon.png">
<link href="stylesheets/style.css" rel="stylesheet">
<script>
if(location.hostname === "muan.co") {
location.href = "https://emoji.muan.co/" + location.hash
}
</script>
</head>
<body>
<header class="site-header">
<button type="button" class="button pull-right js-twemoji">Twemoji</button>
<button type="button" class="button pull-right js-remove-twemoji">Remove Twemoji</button>
<input type="search" class="input-search speedy-filter" placeholder="Search" autofocus aria-label="Search emoji">
<a href="#" class="button js-clear-search clear-search">❌</a>
<a href="#cats" class="mojigroup button">
🐈
</a>
<a href="#transportation" class="mojigroup button">
🚗
</a>
<a href="#food" class="mojigroup button">
🍱
</a>
<a href="#fruit" class="mojigroup button">
🍎
</a>
<a href="#photo" class="mojigroup button">
🌁
</a>
</header>
<main class="list">
<ul class="emojis-container">
</ul>
<div class="loading">
Loading
<noscript>but not really, becasue this needs JavaScript.</noscript>
</div>
<div class="no-results">
<span class="text-big">😭</span>
<br><div class="no-results-text">No results</div>
<p>
Help your future self by adding
<strong class="keyword"></strong>
to the library.
</p>
<p>
<a class="button contribute-button" href="https://github.com/muan/emojilib/edit/main/dist/emoji-en-US.json" target="_blank">Contribute to emojilib</a>
</p>
</div>
</main>
<footer class="site-footer">
<a href="https://twitter.com/muanchiou" target="_blank">@muanchiou</a> |
<a href="https://github.com/muan/emoji/" target="_blank">Site source</a> |
<a href="https://github.com/muan/emojilib" target="_blank">Data source</a>
</footer>
<script type="text/javascript" src="javascripts/stuff.js"></script>
<script type="text/javascript" src="javascripts/search.js"></script>
</body>
</html>