mirror of https://github.com/rwf2/Rocket.git
20 lines
409 B
Handlebars
20 lines
409 B
Handlebars
<!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}}
|
|
<li>{{this}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
|
|
<p>Try going to <a href="/hello/YourName">/hello/YourName</a>.</p>
|
|
<p>Also, check {{ wow "this" }} (custom helper) out!</p>
|
|
</body>
|
|
</html>
|