iocaine/templates/main.hbs

18 lines
284 B
Handlebars
Raw Normal View History

<!doctype html>
<html>
<head>
<title>{{ request_uri }}</title>
</head>
<body>
{{{ backlink }}}
{{#each garbage}}
<p>{{{ this }}}</p>
{{/each}}
<ul>
{{#each links}}
<li><a href=\"{{ this.href }}\">{{ this.title }}</a></li>
{{/each}}
</ul>
</body>
</html>