mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
34 lines
1011 B
HTML
Executable File
34 lines
1011 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name="format-detection" content="telephone=no" />
|
|
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
|
|
<link rel="stylesheet" href="css/framework.css">
|
|
|
|
</head>
|
|
<body>
|
|
<section class="panel-page-container">
|
|
|
|
<section data-panel="left-panel" class="panel-content">
|
|
Panel!
|
|
</section>
|
|
|
|
<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" data-toggle-panel="left-panel" href="#">Panel</a>
|
|
</main>
|
|
|
|
</section>
|
|
<script src="js/framework-gestures.js"></script>
|
|
<script src="js/framework-events.js"></script>
|
|
<script src="js/framework-panel.js"></script>
|
|
|
|
|
|
</body>
|
|
</html>
|