Made xwebmail work with new handlers package. Pulls important headers from the database and provides extremely basic folder view on webpage. Reverted layout customizations returning folder view to original wider width. JS App now handles all the rendering, index.html only contains placeholder with background to indicate loading.
27 lines
1010 B
HTML
Executable File
27 lines
1010 B
HTML
Executable File
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="A layout example that shows off a responsive email layout.">
|
|
<title>Email – Layout Examples – Pure</title>
|
|
<link rel="stylesheet" href="/css/pure.css">
|
|
<!--[if lte IE 8]>
|
|
<link rel="stylesheet" href="/css/layouts/email-old-ie.css">
|
|
<![endif]-->
|
|
<!--[if gt IE 8]><!-->
|
|
<link rel="stylesheet" href="/css/layouts/email.css">
|
|
<!--<![endif]-->
|
|
</head>
|
|
<body>
|
|
<div id="content" class="loading"></div>
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
|
|
<script src="/js/react.js"></script>
|
|
<script src="/js/JSXTransformer.js"></script>
|
|
<script src="/js/nav.js" type="text/jsx"></script>
|
|
<script src="/js/folder.js" type="text/jsx"></script>
|
|
<script src="/js/main.js" type="text/jsx"></script>
|
|
<script src="/js/app.js" type="text/jsx"></script>
|
|
</body>
|
|
</html>
|