12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Ionic</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <meta name="format-detection" content="telephone=no">
- <meta name="msapplication-tap-highlight" content="no">
- <link ios-href="build/css/app.ios.css" rel="stylesheet">
- <link md-href="build/css/app.md.css" rel="stylesheet">
- </head>
- <body>
- <!-- this Ionic's root component and where the app will load -->
- <ion-app></ion-app>
- <script src="cordova.js"></script>
- <script src="build/js/app.bundle.js"></script>
- </body>
- </html>
|