refactor(demos): forms and input

This commit is contained in:
Drew Rygh
2015-11-04 19:37:41 -06:00
parent 19ce43a182
commit a766c20d65
50 changed files with 306 additions and 296 deletions

View File

@ -0,0 +1,13 @@
import {Page} from 'ionic/ionic';
import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers';
@Page({
templateUrl: 'cards/header/template.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class HeaderPage {
constructor() {
}
}

View File

@ -0,0 +1,25 @@
<ion-navbar *navbar hide-back-button class="show-navbar android-attr">
<ion-title>Card Headers</ion-title>
</ion-navbar>
<ion-content class="has-header components-demo cards-bg">
<ion-card>
<ion-card-header>
Header
</ion-card-header>
<ion-card-content>
The British use the term "header", but the American term "head-shot" the English simply refuse to adopt.
</ion-card-content>
</ion-card>
</ion-content>