mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 15:51:16 +08:00
Start of basic route controller
This commit is contained in:
29
hacking/route.html
Normal file
29
hacking/route.html
Normal file
@ -0,0 +1,29 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Route Controller</title>
|
||||
|
||||
<!-- Sets initial viewport load and disables zooming -->
|
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||
<link href="/vendor/font-awesome/css/font-awesome.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../dist/ionic.css">
|
||||
</head>
|
||||
<body>
|
||||
<section>
|
||||
<header class="bar bar-header bar-dark">
|
||||
<h1 class="title">Routes</h1>
|
||||
</header>
|
||||
|
||||
<main class="has-header content">
|
||||
<a href="#cats">Cats</a>
|
||||
</main>
|
||||
</section>
|
||||
|
||||
<script src="RouteController.js"></script>
|
||||
<script>
|
||||
var rc = new RouteViewController({
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user