2016-09-22 11:12:07 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Handlebars Demo</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Hi {{name}}</h1>
|
|
|
|
<h3>Here are your items:</h3>
|
|
|
|
<ul>
|
|
|
|
{{#each items}}
|
2017-12-29 04:52:03 +00:00
|
|
|
<li>{{this}}</li>
|
2016-09-22 11:12:07 +00:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2016-09-30 04:41:21 +00:00
|
|
|
|
2017-12-29 04:52:03 +00:00
|
|
|
<p>Try going to <a href="/hello/YourName">/hello/YourName</a>.</p>
|
|
|
|
<p>Also, check {{ wow "this" }} (custom helper) out!</p>
|
2016-09-22 11:12:07 +00:00
|
|
|
</body>
|
|
|
|
</html>
|