Files
ionic-framework/hacking/sideMenu.html
2013-09-20 15:11:56 -05:00

33 lines
924 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>Side Menu</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">
<a href="#" class="button"><i class="icon-reorder"></i></a>
<h1 class="title">Tab Bars</h1>
</header>
<main class="has-header content content-padded">
<h1>Swipe me, side to side</h1>
</main>
</section>
<script src="../../js/ionic-events.js"></script>
<script src="../../js/ionic-gestures.js"></script>
<script src="TabBar.js"></script>
<script src="TabBarController.js"></script>
<script>
</script>
</body>
</html>