-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (39 loc) · 1.36 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ionic Test</title>
</head>
<body>
<ion-app>
<ion-router>
<ion-route-redirect from="/" to="/tutorial"></ion-route-redirect>
<ion-route url="/tutorial" component="page-tutorial"></ion-route>
<ion-route url="/test" component="page-test"></ion-route>
<ion-route url="/account" component="page-account"></ion-route>
<ion-route url="/signup" component="page-signup"></ion-route>
<ion-route url="/support" component="page-support"></ion-route>
</ion-router>
<ion-menu>
<ion-header>
<ion-toolbar color="primary">
<ion-title> Menu </ion-title>
</ion-toolbar>
</ion-header>
<ion-content class="outer-content" mode="ios">
<ion-list>
<ion-list-header mode="ios">Itens do menu</ion-list-header>
<ion-item tappable> Item 1</ion-item>
</ion-list>
</ion-content>
</ion-menu>
<ion-nav main></ion-nav>
<ion-loading-controller></ion-loading-controller>
</ion-app>
<link rel="import" href="./pages/tutorial.html">
<link rel="import" href="./pages/test.html">
<script src="https://unpkg.com/@ionic/[email protected]/dist/ionic.js"></script>
</body>
</html>