16 lines
349 B
Handlebars
16 lines
349 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
{{#if csp}}
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="{{#each csp}}{{@key}}{{#each this}} '{{this}}'{{/each}};{{/each}}"
|
|
/>
|
|
{{/if}}
|
|
<title>Renai</title>
|
|
</head>
|
|
<body id="app"></body>
|
|
<script src="{{appBundle}}"></script>
|
|
</html>
|