-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathexample.html
33 lines (28 loc) · 1.09 KB
/
example.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
<!DOCTYPE HTML>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<title>jQuery AutoBars Example</title>
<script src="https://code.jquery.com/jquery-2.1.1.min.js" type="text/javascript"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0/handlebars.min.js" type="text/javascript" charset="utf-8"></script>
<script src="src/jquery-autobars.js" type="text/javascript"></script>
<script src="helper-templates.hbs" type="text/x-handlebars-partial"></script>
<script src="main.hbs" type="text/x-handlebars-template"></script>
<script type="text/javascript">
$(document).ready(function() {
var callback_function = function() {
console.log('it worked!!');
var $html = $.handlebarTemplates['main']({
message: "a variable loaded from a partial compiled"
});
$('body').append($html);
};
$(document).autoBars({
callback: callback_function
});
})
</script>
</head>
<body>
<h1 id="header">Minimalistically awesome</h1>
<p>Minimalist templates on steroids</p>
</body>