-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (23 loc) · 916 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Reddit Gallery</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="./src/static/imgs/favicon.ico" rel="icon" type="image/x-icon" />
<link rel="stylesheet" href="./src/static/css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,600" rel="stylesheet">
<link rel="import" href="./src/components/search-panel.html">
<link rel="import" href="./src/components/feed-item.html">
<script src="https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/pace.min.js"></script>
</head>
<body>
<div class="container">
<search-panel></search-panel>
<div class="feed"></div>
</div>
<script src="./src/index.js"></script>
</body>
</html>