Files
2015-05-16 20:57:07 +02:00

30 lines
600 B
HTML

<ion-view nav-title="Content">
<ion-content>
<!--
<f></f>
<f></f>
<f></f>
<f></f>
<f></f>
-->
<b>Items: {{items.length}}</b>
<ion-list>
<ion-item *for="#item of items">
{{item.title}}
</ion-item>
</ion-list>
</ion-content>
</ion-view>
<style>
ion-content { background-color: black !important; }
.item { background: transparent !important; }
.item-content { background: transparent !important; }
.item-label { color: #fff; }
/*f { display: block; height: 400px; width: 100%; background-color: #387ef5; margin-bottom: 15px; }*/
</style>