Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1.  
  2. <section class="event_promotion_area">
  3. <div class="container">
  4. <div class="hosting_title security_title text-center">
  5. <h2 class="wow fadeInUp" data-wow-delay="0.2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInUp;">{{event?.title}}</h2>
  6. <h3 class="wow fadeInUp" data-wow-delay="0.2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInUp;"><span>By {{event?.person[0]?.name}}</span></h3>
  7.  
  8. </div>
  9. <div class="event_promotion_inner">
  10. <div class="event_img" >
  11. <img src="https://res.cloudinary.com/mentornations/image/upload/c_scale,w_1170/v1572795112/TechThruAppDevs/65149319_1981866298584938_1410676643957047296_o.jpg" style="border-radius: 6px;" alt="">
  12. </div>
  13. <div class="row event_promotion_info align-items-center">
  14. <div class="col-md-6">
  15. <div class="e_promo_text wow fadeInDown" style="visibility: visible; animation-name: fadeInDown;">
  16. <div class="d-flex">
  17. <a href="#" class="promo_tag">{{event?.price}}</a>
  18. <a href="#" class="date">{{event?.datebegin | date: 'EEEE, MMMM d, h:mm a'}}</a>
  19. </div>
  20. <!-- <h3 *ngIf="event?.laptop ; else elseBlock">Bring Your Laptop</h3>
  21. <h4>Only {{event?.table.length}} Tables Available</h4> -->
  22. <h4><a title="location" href="http://maps.google.com/maps?q=+{{event?.location[0].lng}}+,+{{event?.location[0].lat}}"> {{event?.location[0].place}} </a></h4>
  23. <a class="event_btn event_btn_two btn_hover" (click)="JoinEvent(event)" > <span style="color: white;" *ngIf="event?.available">Buy Ticket</span></a>
  24. </div>
  25. </div>
  26. <div class="col-md-6">
  27. <p>{{event?.description}}</p>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. </section>
  33.  
  34.  
  35. <section class="event_schedule_area sec_pad" *ngIf="event?.type === 'hack' && hackathon != null">
  36. <div class="container">
  37. <div class="hosting_title security_title text-center">
  38. <h2 class="wow fadeInUp" data-wow-delay="0.2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInUp;"><span>Schedule</span>Hackathon Schedule</h2>
  39. </div>
  40. <div class="event_schedule_inner">
  41. <ul class="nav nav-tabs event_tab" role="tablist">
  42. <li *ngFor="let item of hackathon?.days; let i = index" class="nav-item wow fadeInUp" data-wow-delay="0.4s" style="visibility: visible; animation-delay: 0.4s; animation-name: fadeInUp;">
  43. <a [class]=" i == 0 ? 'nav-link active show' : 'nav-link' " id="{{ i }}-tab" data-toggle="tab" href="#{{i}}" role="tab" [attr.aria-controls]="i" [attr.aria-selected]="i == 0 ? true : false" (click)="changeSelected(i)">
  44. <h5>Day {{i+1}}<span>{{ item?.dayDate }}</span></h5>
  45. </a>
  46. </li>
  47. </ul>
  48. <div class="tab-content event_tab_content">
  49. <div *ngFor="let day of hackathon?.days; let j = index" [class]=" j == tabselected ? 'tab-pane fade active show' : 'tab-pane fade'" id="{{j}}" role="tabpanel" [attr.aria-labelledby]="j">
  50. <div *ngFor="let item of day.day" class="media" >
  51. <div class="media-left">
  52. <img src="img/home-event/conference.jpg" alt="">
  53. <a href="#"><i class="icon_clock_alt"></i>{{ item?.time}}</a>
  54. <a href="#"><i class="icon_pin_alt"></i>{{item?.room}}</a>
  55. </div>
  56. <div class="media-body">
  57. <h3 class="h_head">{{ item?.name}}</h3>
  58. <span>by <a href="#">{{ item?.instructor }}</a></span>
  59. <p>{{ item?.description }}</p>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement