Kovid Goyal c56ef9c087 Simplify loading of javascript in render iframe
Also improves performance by in-lining javascript into index.html
2016-03-24 23:41:57 +05:30

29 lines
840 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>calibre</title>
<meta charset="utf-8">
<meta name="robots" content="noindex">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="static/reset.css"></link>
<link rel="stylesheet" href="static/font-awesome/fa.css"></link>
</head>
<body>
<div id="page_load_progress">
<progress>
</progress>
<div>Loading, please wait&hellip;<div>
<style type="text/css">
#page_load_progress {
position:relative;
top: 50px;
margin-left: auto; margin-right: auto;
text-align: center;
}
</style>
</div>
<script id="main_js">MAIN_JS</script>
</body>
</html>