2019-06-08 00:36:44 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2019-10-15 21:30:56 +02:00
|
|
|
{{#if csp}}
|
2019-10-03 23:33:18 +02:00
|
|
|
<meta
|
|
|
|
http-equiv="Content-Security-Policy"
|
2019-10-15 21:30:56 +02:00
|
|
|
content="{{#each csp}}{{@key}}{{#each this}} '{{this}}'{{/each}};{{/each}}"
|
2019-10-03 23:33:18 +02:00
|
|
|
/>
|
2019-10-15 21:30:56 +02:00
|
|
|
{{/if}}
|
2019-12-10 23:36:34 +01:00
|
|
|
<title>{{appTitle}}</title>
|
2019-06-08 00:36:44 +02:00
|
|
|
</head>
|
2019-06-08 05:06:21 +02:00
|
|
|
<body id="app"></body>
|
2019-10-15 21:30:56 +02:00
|
|
|
<script src="{{appBundle}}"></script>
|
2019-06-08 00:36:44 +02:00
|
|
|
</html>
|