RenaiApp/templates/index.html.handlebars

16 lines
356 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>{{appTitle}}</title>
</head>
<body id="app"></body>
<script src="{{appBundle}}"></script>
</html>