mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
new example page
This commit is contained in:
@@ -1,36 +1,27 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Example</title>
|
||||
<title>Buttons</title>
|
||||
|
||||
<!-- Sets initial viewport load and disables zooming -->
|
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||
|
||||
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
|
||||
<!-- Set a shorter title for iOS6 devices when saved to home screen -->
|
||||
<meta name="apple-mobile-web-app-title" content="">
|
||||
|
||||
<!-- Set Apple icons for when prototype is saved to home screen -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="touch-icons/apple-touch-icon-114x114.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="touch-icons/apple-touch-icon-72x72.png">
|
||||
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="touch-icons/apple-touch-icon-57x57.png">
|
||||
|
||||
<link rel="stylesheet" href="../dist/framework-with-theme.css">
|
||||
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
|
||||
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="../../dist/framework-with-theme.css">
|
||||
<link rel="stylesheet" href="app.css">
|
||||
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-route.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-animate.min.js"></script>
|
||||
|
||||
<script src="app.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<body ng-app="peopleApp">
|
||||
|
||||
<section>
|
||||
|
||||
<header data-template="primary-header"></header>
|
||||
<header class="bar bar-header bar-dark">
|
||||
<h1 class="title">Buttons</h1>
|
||||
</header>
|
||||
|
||||
<main class="content-padded">
|
||||
<p>
|
||||
@@ -43,27 +34,9 @@
|
||||
<a class="button button-danger" href="index.html">Danger</a>
|
||||
<a class="button button-dark" href="index.html">Dark</a>
|
||||
</p>
|
||||
<p>
|
||||
<div class="button-group">
|
||||
<a class="button button-primary" href="index.html">Success</a>
|
||||
<a class="button button-primary" href="index.html">Warning</a>
|
||||
<a class="button button-primary" href="index.html">Danger</a>
|
||||
<a class="button button-primary" href="index.html">Dark</a>
|
||||
</div>
|
||||
</p>
|
||||
</main>
|
||||
|
||||
<footer class="bar-footer"></footer>
|
||||
|
||||
</section>
|
||||
|
||||
<script src="../js/jquery/jquery-1.10.2.js"></script>
|
||||
<script src="../js/framework/framework-events.js"></script>
|
||||
<script src="../js/framework/framework-transition.js"></script>
|
||||
<script src="../js/framework/framework-navigation.js"></script>
|
||||
<script src="../js/framework/framework-template.js"></script>
|
||||
<script src="../js/framework/framework-buttons.js"></script>
|
||||
<script src="../js/framework/test/event-listeners.js"></script>
|
||||
<script src="../js/framework/framework-init.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user