RenaiApp/templates/index.html.handlebars

16 lines
356 B
Handlebars
Raw Normal View History

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