-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (36 loc) · 794 Bytes
/
index.html
File metadata and controls
38 lines (36 loc) · 794 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LoopGIFs</title>
<style>
body {
margin: 0;
}
#gifs > img {
display: block;
float: left;
width: 50vw;
height: 50vh;
object-fit: cover;
}
</style>
</head>
<body>
<div id="gifs">
<h1>GIFS GO HERE!!</h1>
</div>
<!-- DEV MODE -->
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.import('lib/main')
</script>
<!-- PRODUCTION MODE -->
<!-- to generate build.js, run: jspm bundle-sfx --minify lib/main -->
<!--
<script src="jspm_packages/traceur-runtime.js"></script>
<script src="build.js"></script>
-->
</body>
</html>