mirror of https://github.com/rwf2/Rocket.git
19 lines
344 B
Handlebars
19 lines
344 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>
|
|
</body>
|
|
</html>
|