-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Base JS Setup</title>
<link rel="stylesheet" href="style.css">
<script src="app.js"></script>
</head>
<body>
<div class="wrapper">
<section>
<div class="container">
<h1>App Base JS Setup</h1>
<hr>
<p>This is a small utility class to help you handle small things, for small websites and let you
organize your code more
organically</p>
<hr>
<h2>What's included?</h2>
<ul>
<li><a href="#logging">Better browser logging</a></li>
<li><a href="#setup">Easier setup and error handling</a></li>
<li><a href="#modules">Modules loading</a></li>
<li><a href="#debug">Debug mode</a></li>
</ul>
<hr>
<h3 id="#logging">Better logging</h3>
<div class="row">
<div class="six columns">
<p></p>
</div>
<div class="six columns">
<pre><code>
</code></pre>
</div>
</div>
<h3 id="#setup">Setup</h3>
<h3 id="#modules">Modules</h3>
<h3 id="#debug">Debug mode</h3>
</div>
</section>
</div>
<script src="index.js"></script>
</body>
</html>