30 lines
931 B
HTML
30 lines
931 B
HTML
<ion-view view-title="Gekaufte Rosen">
|
|
<ion-content class="padding">
|
|
|
|
<div style="padding-bottom:15px;">
|
|
|
|
<ul class="list card">
|
|
<div class="item item-divider oleo">Hier können Sie Ihre gekauften Rosen ansehen oder nochmals versenden!</div>
|
|
|
|
<a class="item item-thumbnail-left item-button-right" href="#" ng-repeat="i in items" ng-model="items">
|
|
<img src="img/rose1.png">
|
|
<h1>{{i.name}}</h1>
|
|
<p>{{i.freitext}} </p>
|
|
<div class="buttons" style="margin-top:30px;">
|
|
<button class="button button-small" >
|
|
<i class="icon ion-image"> Vorschau</i>
|
|
</button>
|
|
<button class="button button-small">
|
|
<i class="icon ion-android-share-alt"> Teilen</i>
|
|
</button>
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
</ion-content>
|
|
</ion-view>
|