mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-12 17:23:38 +00:00
added app.html
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -8,6 +8,7 @@ version.num
|
||||
public/*.html
|
||||
!public/blank.html
|
||||
!public/unsupported.html
|
||||
!public/app.html
|
||||
public/js/lib
|
||||
public/images/lib
|
||||
public/files
|
||||
|
||||
25
public/app.html
Normal file
25
public/app.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ERPNext</title>
|
||||
<meta name="author" content="">
|
||||
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
|
||||
<script type="text/javascript" src="js/lib/jquery/jquery.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
// browser support
|
||||
if(($.browser.mozilla && parseFloat($.browser.version)<4) ||
|
||||
($.browser.msie && parseFloat($.browser.version)<9) ||
|
||||
($.browser.webkit && parseFloat($.browser.version)<533) ) {
|
||||
window.location.href= 'unsupported.html';
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript" src="js/all-app.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="css/all-app.css">
|
||||
</head>
|
||||
<body>
|
||||
<header></header>
|
||||
<div id="body_div">
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
Reference in New Issue
Block a user