iocaine/templates/main.hbs

24 lines
487 B
Handlebars
Raw Normal View History

<!doctype html>
<html>
<head>
<title>{{ request_uri }}</title>
</head>
<body>
{{#unless (is-root)}}
<a href="../">Back</a>
{{/unless}}
{{#each paragraphs}}
<p>{{ markov-gen "garbage" this.index this.value }}</p>
{{/each}}
<ul>
{{#each links}}
<li>
<a href="{{ href-gen "links" this.index this.value.href_words }}/">
{{ markov-gen "titles" this.index this.value.title_words }}
</a>
</li>
{{/each}}
</ul>
</body>
</html>