-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
45 lines (43 loc) · 1.93 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Reflect Examples</title>
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico">
<link href="./src/stylesheets/main.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="./src/javascripts/card-template.js"></script>
<script src="./src/javascripts/external.js"></script>
</head>
<body>
<div class="container">
<header>
<a id="github-header" target="_blank" class="fork-me desktop-only" href="https://github.com/reflect/examples">View on GitHub</a>
<a href="./">
<img class="logo" src="./src/images/reflect-logo-bw.svg" alt="Reflect logo" />
</a>
<div class="lead">
<h1>Reflect examples</h1>
<h2>A collection of simple demonstrations and sample resources for creating your own Reflect application</h2>
</div>
</header>
<!-- Cards -->
<div class="card-container">
<div class="card-list"></div>
</div>
<!-- Footer -->
<div class="footer">
<div class="link-list">
<p class="desktop-only">
View the <a id="github-footer" target="_blank" href="https://github.com/reflect/examples">code</a> on GitHub,
<a target="_blank" href="https://app.reflect.io/register">create</a> an account,
or <a target="_blank" href="https://reflect.io">visit</a> the Reflect website
</p>
<a class="mobile-only" target="_blank" href="https://app.reflect.io/register">Join Reflect</a>
<a class="mobile-only" target="_blank" href="https://reflect.io">Learn more</a>
</div>
</div>
</div>
</body>
</html>