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.

24 lines
719 B

  1. <ion-view view-title="Event">
  2. <ion-content>
  3. <a class="item item-avatar" ng-href="#/app/users/{{event.user._id}}">
  4. <img ng-src="{{event.user.img}}">
  5. <h2>{{event.user.username}}</h2>
  6. <p>{{event.user.description}}</p>
  7. </a>
  8. <a class="item">
  9. <h2>{{event.title}}</h2>
  10. <p>{{event.description}}</p>
  11. <p>{{event.date | date: 'HH:mm, dd/MM/yyyy'}}</p>
  12. </a>
  13. <div class="item item-image">
  14. <img ng-src="{{event.img}}">
  15. </div>
  16. <div class="item">
  17. <h2>Map</h2>
  18. </div>
  19. <leaflet width="100%" height="40%" markers="markers" center="center" tiles="tiles" id="map-simple-map"></leaflet>
  20. </ion-content>
  21. </ion-view>