-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
51 lines (44 loc) · 1.9 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="Browserify Component Scaffold" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="g5-component.js" />
<link rel="stylesheet" href="/src/styles/lib/bootstrap/bootstrap.min.css" />
<title>g5-component.js</title>
</head>
<body>
<main class="container">
<div class="jumbotron">
<h1 class="text-center">g5-component.js</h1>
</div>
<p><kbd>> npm run build; npm run build-examples;</kbd></p>
<section class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Module Types</h3>
</div>
<div class="panel-body">
<div class="list-group">
<a href="/example/index-global.html" class="list-group-item">Browser Global</a>
<a href="/example/index-amd.html" class="list-group-item">AMD</a>
</div>
</div>
</section>
<section class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Features</h3>
</div>
<div class="panel-body">
<div class="list-group">
<a href="/example/composition.html" class="list-group-item">Composition</a>
</div>
</div>
</section>
</main>
</body>
</html>