mirror of
https://github.com/moparisthebest/mail
synced 2024-11-15 13:45:08 -05:00
49 lines
2.0 KiB
HTML
49 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html ng-csp manifest="appcache.manifest">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Whiteout Mail</title>
|
|
|
|
<!-- Theses CSP rules are used as a fallback in runtimes such as Cordova -->
|
|
<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 *">
|
|
|
|
<!-- 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 -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
<link rel="stylesheet" media="all" href="css/all.min.css" type="text/css">
|
|
|
|
<!-- The Scripts -->
|
|
<script src="socket.io/socket.io.js"></script>
|
|
<script src="js/openpgp.min.js"></script>
|
|
<script src="js/forge.min.js"></script>
|
|
<script src="js/app.min.js"></script>
|
|
</head>
|
|
|
|
<body key-shortcuts>
|
|
|
|
<!-- 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>
|
|
|
|
<div ng-view class="main-app-view"></div>
|
|
|
|
<!-- error dialog lightbox -->
|
|
<div class="lightbox lightbox--dialog" ng-class="{'lightbox--show': state.dialog.open}"
|
|
ng-include="'tpl/dialog.html'"></div>
|
|
|
|
</body>
|
|
</html>
|