mirror of
https://git.madhouse-project.org/algernon/iocaine.git
synced 2025-02-18 23:48:47 +01:00
18 lines
284 B
Handlebars
18 lines
284 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>
|