mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
39 lines
918 B
HTML
39 lines
918 B
HTML
<!DOCTYPE html>
|
|
<html ng-app="ionic">
|
|
<head>
|
|
<script src="../../dist/js/ionic.bundle.js"></script>
|
|
<meta charset="utf-8">
|
|
<title>Cards</title>
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
|
|
<link href="../../dist/css/ionic.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
position: absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Cards: Header/Footer</h1>
|
|
</header>
|
|
|
|
<div class="content has-header">
|
|
|
|
<div class="card">
|
|
<div class="item item-divider">
|
|
I'm a Header in a Card!
|
|
</div>
|
|
<div class="item item-text-wrap">
|
|
This is a basic Card with some text.
|
|
</div>
|
|
<div class="item item-divider">
|
|
I'm a Footer in a Card!
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|