-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (55 loc) · 2.37 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta name="viewport" content="initial-scale=1.0">
<title>Ashnita Bonds</title>
<!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> -->
<!-- css stylesheets -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="scss/application.css" type="text/css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="Vendors/html5shiv.js"></script>
<script src="Vendors/respond.js"></script>
<![endif]-->
<script src="Vendors/prefixfree.min.js"></script>
<!-- javascript-->
<script src="scripts/utilities.js"></script>
<script src="scripts/row.js"></script>
<script src="scripts/story.js"></script>
<script src="scripts/app.js"></script>
</head>
<body>
<div id="wrapper">
<header role="banner">
<div id="logo"></div>
</header>
<nav role="navigation">
<ul>
<li><a class="storyLink" data-num="2" href="#StoryOf2">Story of 2</a></li>
<li><a class="storyLink" data-num="3" href="#StoryOf3">Story of 3</a></li>
<li><a class="storyLink" data-num="4" href="#StoryOf4">Story of 4</a></li>
<li><a class="storyLink" data-num="5" href="#StoryOf5">Story of 5</a></li>
<li><a class="storyLink" data-num="6" href="#StoryOf6">Story of 6</a></li>
<li><a class="storyLink" data-num="7" href="#StoryOf7">Story of 7</a></li>
<li><a class="storyLink" data-num="8" href="#StoryOf8">Story of 8</a></li>
<li><a class="storyLink" data-num="9" href="#StoryOf9">Story of 9</a></li>
<li><a class="storyLink" data-num="10" href="#StoryOf10">Story of 10</a></li>
<li><a class="storyLink" data-num="20" href="#StoryOfDoubles">Story of Doubles</a></li>
<li><a class="storyLink" data-num="1" href="#StoryOfRandoms">Story of Randoms</a></li>
</ul>
</nav>
<section role="main">
<div id="title"></div>
<div id="score"></div>
<div id="content"></div>
</section>
<aside role="complementary">
</aside>
<footer role="contentinfo">
</footer>
</div>
</body>
</html>