-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
47 lines (38 loc) · 1.12 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>PinCrunch</title>
<!-- Libraries -->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script>google.load("feeds", "1");</script>
<!-- Application styles -->
<link rel="stylesheet" href="assets/css/index.css">
</head>
<body>
<header>
<h1>PinCrunch</h1>
</header>
<div id="loading">
<img src="assets/img/spinner.gif">
<span>Loading...</span>
</div>
<div id="lightbox" style="display: none">
</div>
<!-- Templates -->
<script type="text/template" id="pin-template">
<img width="192" src="<%- imageUrl %>"></img>
<figcaption>
<%- title %>
</figcaption>
</script>
<script type="text/template" id="post-template">
<a href="<%- link %>"><h2><%- title %></h2></a>
<article><%= content %></article>
</script>
<!-- Application entry point -->
<script data-main="app/config" src="assets/js/libs/require.js"></script>
</body>
</html>