mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
24 lines
454 B
HTML
24 lines
454 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
|
|
<link rel="stylesheet" href="/dist/css/ionic.css" />
|
|
<script src="/jspm_packages/system.js"></script>
|
|
<script src="/example-bootstrap.js"></script>
|
|
</head>
|
|
<body my-app>
|
|
Loading...
|
|
</body>
|
|
<script>
|
|
function exampleReady() {
|
|
System.import('./main');
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|