mirror of
https://github.com/sakaljurgis/kobo.git
synced 2026-07-08 22:17:42 +00:00
33 lines
390 B
Handlebars
33 lines
390 B
Handlebars
<html lang="lt">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>kobo</title>
|
|
<link rel="stylesheet" href="style.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>
|
|
{{title}}
|
|
</h1>
|
|
|
|
<div>
|
|
{{{body}}}
|
|
</div>
|
|
|
|
<div>
|
|
{{#if pagesList}}
|
|
{{> pagination }}
|
|
{{/if}}
|
|
</div>
|
|
|
|
<div>
|
|
{{#if debug}}
|
|
<pre>{{toJSON debug}}
|
|
</pre>
|
|
{{/if}}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|