iocaine/templates/main.hbs
Gergely Nagy ed1f5d0a3a
templates: Fix the link template
This was originally an embedded string in Rust, which needed to escape
the quotation mark. The escaping is no longer needed in raw HBS.

Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
2025-01-28 09:01:45 +01:00

17 lines
282 B
Handlebars

<!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>