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.

12 lines
431 B

  1. <ion-view view-title="Travels">
  2. <ion-content>
  3. <div class="list">
  4. <a ng-repeat="travel in travels" class="item item-avatar" href="#/app/travels/{{travel.id}}">
  5. <img ng-src="img/carimg/{{travel.icon}}.png">
  6. <h2>{{travel.title}}</h2>
  7. <p>{{travel.description}}</p>
  8. <div class="badge badge-calm item-note">{{travel.owner}}</div>
  9. </a>
  10. </div>
  11. </ion-content>
  12. </ion-view>