mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
16 lines
322 B
Handlebars
16 lines
322 B
Handlebars
|
<!doctype html>
|
||
|
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
{{#title}}<title>{{this}}</title>{{/title}}
|
||
|
{{#css}}<link rel="stylesheet" href="{{this}}">{{/css}}
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<section class="wrapper">
|
||
|
{{{body}}}
|
||
|
</section>
|
||
|
{{#js}}<script src="{{this}}"></script>{{/js}}
|
||
|
</body>
|
||
|
</html>
|