So here's the updated version:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>MY PAGE TITLE HERE</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.4/handlebars.js"></script>
<script>
$(helloWorld); //on document ready...
function helloWorld(){
var helloWorldTemplate = Handlebars.compile($("#hello-world-template").html());
$("#main").html(helloWorldTemplate({"msg":"Hello World"}));
}
</script>
<script id="hello-world-template" type="text/x-handlebars-template">
<div>{{msg}}</div>
</script>
</head>
<body>
<div id="main"></div>
</body>
</html>
No comments:
Post a Comment