Files
2013-09-19 23:48:11 -05:00

37 lines
925 B
HTML

<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({
root: 'hacking/'
});
rc.when('route.html', function() {
console.log('Loaded');
});
rc.when('cats', function() {
console.log('Loaded');
});
</script>
</body>
</html>