forked from samotari/crypto-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="default-src 'self' https: data: gap: wss: https://ssl.gstatic.com; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
<title><%= info.name %></title>
<link href="css/all.min.css" rel="stylesheet">
<%= html.favicon.content %>
</head>
<body>
<%= html.app.content %>
<noscript>
<!-- This language string is hard-coded because handlebars requires JavaScript. -->
<p class="page-description">This app requires JavaScript to function.</p>
</noscript>
<% _.each(_.values(html.templates), function(template) { %>
<script type="text/html" id="template-<%= template.key %>">
<%= template.content %>
</script>
<% }); %>
<script>
var app = app || {};
app.info = '<%= JSON.stringify(info) %>';
</script>
<script src="cordova.js"></script>
<script src="js/all.js"></script>
</body>
</html>