-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.html
57 lines (46 loc) · 1.84 KB
/
app.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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="../.tmp/husky.css">
<style type="text/css">
#content {
width: 800px;
margin-left: 300px;
margin-top: 100px;
min-height: 300px;
background: #f1f1f1;
}
</style>
</head>
<body>
<div data-aura-component="header@husky"></div>
<div data-aura-component="navigation@husky" data-aura-url="/navigation" data-aura-collapse="true"></div>
<div id="content" class="grid">
<form action="#">
<div class="grid-row">
<div class="grid-col-6">
<label for="firstName">Firstname:</label>
<input id="firstName" type="text" class="form-element"/>
</div>
<div class="grid-col-6">
<label for="lastName">Lastname:</label>
<input id="lastName" type="text" class="form-element"/>
</div>
</div>
</form>
</div>
<script src="../node_modules/sinon/pkg/sinon.js"></script>
<script src="../bower_components/jquery/jquery.js"></script>
<!--script data-main="app" src="../dist/husky.js"></script-->
<script data-main="app" src="../bower_components/requirejs/require.js"></script>
</body>
</html>