2013-10-16 08:03:13 -04:00
|
|
|
<!DOCTYPE html>
|
2014-11-19 14:54:59 -05:00
|
|
|
<html ng-csp manifest="appcache.manifest">
|
2013-10-16 08:03:13 -04:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2014-08-12 11:09:18 -04:00
|
|
|
<title>Whiteout Mail</title>
|
2013-10-16 08:03:13 -04:00
|
|
|
|
2014-07-16 06:47:25 -04:00
|
|
|
<!-- Theses CSP rules are used as a fallback in runtimes such as Cordova -->
|
2014-09-26 10:34:31 -04:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self' chrome-extension: file: gap:; object-src 'none'; script-src 'self' 'unsafe-eval' chrome-extension: file: gap:; connect-src *; style-src 'self' 'unsafe-inline' chrome-extension: file: gap:; img-src *">
|
2014-07-16 06:47:25 -04:00
|
|
|
|
2014-08-13 07:37:55 -04:00
|
|
|
<!-- iOS homescreen link -->
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<!-- iOS iPad icon (retina) -->
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="img/icon-152-ios.png">
|
|
|
|
<!-- iOS iPhone icon (retina) -->
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="img/icon-120-ios.png">
|
|
|
|
<!-- iOS status bar black with white text -->
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
|
|
<!-- standard homescreen link -->
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
<!-- standard icon (retina) -->
|
|
|
|
<link rel="icon" sizes="196x196" href="img/icon-196.png">
|
|
|
|
|
|
|
|
<!-- Viewport and styles -->
|
2013-12-06 11:11:57 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
2013-10-22 12:26:30 -04:00
|
|
|
<link rel="stylesheet" media="all" href="css/all.min.css" type="text/css">
|
2013-10-16 08:03:13 -04:00
|
|
|
|
|
|
|
<!-- The Scripts -->
|
2014-08-13 10:16:28 -04:00
|
|
|
<script src="socket.io/socket.io.js"></script>
|
2014-10-20 12:44:39 -04:00
|
|
|
<script src="js/openpgp.min.js"></script>
|
2014-10-08 12:36:00 -04:00
|
|
|
<script src="js/forge.min.js"></script>
|
2014-10-02 16:05:44 -04:00
|
|
|
<script src="js/app.min.js"></script>
|
2013-10-16 08:03:13 -04:00
|
|
|
</head>
|
2014-04-23 06:20:46 -04:00
|
|
|
|
2013-10-16 08:03:13 -04:00
|
|
|
<body key-shortcuts>
|
2014-04-23 06:20:46 -04:00
|
|
|
|
2014-09-23 09:41:37 -04:00
|
|
|
<!-- inline icons have to come first, hide immediately with inline styles -->
|
|
|
|
<div style="width: 0; height: 0; visibility: hidden;">
|
|
|
|
<!-- @import img/icons/all.svg -->
|
|
|
|
</div>
|
|
|
|
|
2013-10-16 08:03:13 -04:00
|
|
|
<div ng-view class="main-app-view"></div>
|
2014-04-23 06:20:46 -04:00
|
|
|
|
|
|
|
<!-- error dialog lightbox -->
|
2014-11-05 10:03:48 -05:00
|
|
|
<div class="lightbox lightbox--dialog" ng-class="{'lightbox--show': state.dialog.open}"
|
|
|
|
ng-include="'tpl/dialog.html'"></div>
|
2014-04-23 06:20:46 -04:00
|
|
|
|
2013-10-16 08:03:13 -04:00
|
|
|
</body>
|
|
|
|
</html>
|