-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
36 additions
and
64 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<title>Ordino</title> | ||
<meta name="description" content=""> | ||
<link rel="icon" href="<%=require('tdp_core/dist/assets/favicon.png')%>"><%=require('tdp_core/dist/template/_head.html')%> | ||
</head> | ||
<body> | ||
|
||
<%=require('tdp_core/dist/template/_body.html')%> | ||
|
||
</body> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<meta name="description" content="" /> | ||
<link rel="icon" href="<%=require('tdp_core/dist/assets/favicon.png')%>" /> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,13 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<head> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<title>Ordino</title> | ||
<meta name="description" content=""> | ||
<link rel="icon" href="${require('tdp_core/dist/assets/favicon.png')}"> | ||
<meta charset='utf-8'> | ||
<meta name="viewport" content="width=device-width"> | ||
<script src="https://cdn.polyfill.io/v3/polyfill.min.js"></script> | ||
</head> | ||
<body> | ||
|
||
<script> | ||
(function () { | ||
var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor); | ||
var isFirefox = /Firefox/.test(navigator.userAgent); | ||
if (!isChrome && !isFirefox) { | ||
alert('This application was designed to be used in Google Chrome and Mozilla Firefox and does not work in Internet Explorer. Running the application in other browsers might result in performance issues or other misbehavior.'); | ||
} | ||
})(); | ||
</script> | ||
|
||
|
||
</body> | ||
<meta name="description" content="" /> | ||
<link rel="icon" href="${require('tdp_core/dist/assets/favicon.png')}" /> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |