You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<ion-view view-title="Travels"> <ion-content> <div class="list"> <a ng-repeat="travel in travels" class="item item-avatar" href="#/app/travels/{{travel.id}}"> <img ng-src="img/carimg/{{travel.icon}}.png"> <h2>{{travel.title}}</h2> <p>{{travel.description}}</p> <div class="badge badge-calm item-note">{{travel.owner}}</div> </a> </div> </ion-content> </ion-view>
|