mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
34 lines
795 B
HTML
34 lines
795 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<!-- https://www.chromium.org/developers/design-documents/chromium-graphics/how-to-get-gpu-rasterization -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="app.css">
|
|
|
|
</head>
|
|
<body class="platform-cordova">
|
|
|
|
<ion-app>
|
|
<ion-loading-icon></ion-loading-icon>
|
|
</ion-app>
|
|
<script src="bundle.js"></script>
|
|
|
|
<!-- <script src="/js/ionic.bundle.js"></script>
|
|
|
|
<script>
|
|
System.config({
|
|
"paths": {
|
|
"*": "*.js",
|
|
"ionic/*": "ionic/*",
|
|
"angular2/*": "angular2/*",
|
|
"rx": "rx"
|
|
}
|
|
})
|
|
System.import("index");
|
|
</script> -->
|
|
|
|
</body>
|
|
</html>
|