-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
63 lines (56 loc) · 2.66 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="assets/css/style.css">
<title>Heisenberg.js</title>
<meta name="description" content="A project base for building modern JavaScript applications">
</head>
<body>
<div id="header">
<div class="container">
<h1>Heisenberg.js</h1>
<div class="clearfix"></div>
</div>
</div>
<div class="container">
<p id="large">A project base for building modern JavaScript applications</p>
<div id="introduction"></div>
<div class="features">
<h3>Features</h3>
<ul>
<li><em>Not</em> a framework, but a base project to help you structure your JavaScript code and files.</li>
<li>Makes use of the Mediator Pattern, so you can trigger events around your application.</li>
<li>Templating built in - Handlebars is included but feel free to change engines.</li>
<li>Follows the Object Literal Pattern with one global namespace, usually 'MyApp' or 'ChatApp'. In this case, it's 'App'.</li>
<li><em>Included: </em>jQuery, Underscore.js and Handlebars.</li>
<li>A fully commented source to show you <em>why</em> it's doing what it's doing and how to build upon it's foundation.</li>
<li>The JavaScript version of the <a href="http://html5boilerplate.com/" target="_BLANK">HTML5 Boilerplate</a>.</li>
</ul>
</div>
<hr>
<p class="medium">It's actually powering this page.</p>
<a class="button" href="https://github.com/Heisenbergjs/heisenberg">GitHub</a>
<a class="button" href="https://twitter.com/intent/tweet?text=Heisenberg.js - A project base for building modern JavaScript applications&url=http://benhowdle.im/heisenberg&via=benhowdle">Tweet</a>
</div>
</div>
<script src="app/vendor/jquery.min.js"></script>
<script src="app/vendor/handlebars.js"></script>
<script src="app/vendor/underscore.min.js"></script>
<script src="app/app.js"></script>
<script src="app/helpers.js"></script>
<script src="app/modules/introduction.js"></script>
<script src="app/main.js"></script>
<!-- analytics - replace 'XXXX' with your analytics ID-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'XXXX']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>