Files
ionic-framework/example/panels.html
2013-08-26 15:22:38 -05:00

33 lines
822 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>Panels</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="../../dist/framework.css">
</head>
<body>
<section class="panel-page-container">
<header class="bar bar-header bar-dark">
<h1 class="title">Panels</h1>
</header>
<main class="content-padded has-header">
<p>A whole bunch of content</p>
<a class="button button-primary" href="#">Panel</a>
</main>
</section>
<section class="panel-content panel-reveal">
Panel!
</section>
</body>
</html>