mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
34 lines
771 B
HTML
34 lines
771 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 href="../../css/ionic.css" rel="stylesheet">
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<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>
|