-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
51 lines (49 loc) · 2.07 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
<!DOCTYPE html>
<!-- Consider specifying the language of your content by adding the `lang` attribute to <html> -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title>Eyeegg</title>
<script type="text/javascript" src="/assets/js/jquery.js"></script>
<script type="text/javascript" src="/assets/js/underscore.js"></script>
<script type="text/javascript" src="/lib/urlify.js"></script>
<script type="text/javascript" src="/lib/jquery.scrollto.min.js"></script>
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
</head>
<body>
<div class="wrapper">
<header class="intro">
<div class="logo border-box">
<a href="/">
<img src="/assets/images/logo.png" alt="EyeEGG, what's cracking where you are">
</a>
</div>
<form action="" class="header__form">
<input type="text" value="" class="border-box" placeholder="Location Search">
</form>
</header>
</div>
<span class="loadingText">Loading…</span>
<div class="uiContainer">
<div id="browseUI"></div>
<div id="showUI" class="hidden"></div>
</div>
<div id="introUI">
<div class="wrapper">
<a href="#" class="citylink" data-album-id="6651">Tokyo</a>
<a href="#" class="citylink" data-album-id="17">Berlin</a>
<a href="#" class="citylink" data-album-id="629">Amsterdam</a>
<a href="#" class="citylink" data-album-id="5435">New York City</a>
<a href="#" class="citylink" data-album-id="1419">London</a>
<a href="#" class="citylink" data-album-id="4778">Paris</a>
</div>
</div>
<script type="text/javascript" src="/assets/js/eyeegg.js"></script>
<script type="text/javascript"> EGG.initialize(); </script>
</body>
</html>