|
| 1 | +<!DOCTYPE html> |
| 2 | + |
| 3 | +<html lang="en"> |
| 4 | + <head> |
| 5 | + <title>Events</title> |
| 6 | + |
| 7 | + <!-- General Meta Tags --> |
| 8 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 9 | + <meta |
| 10 | + name="description" |
| 11 | + content="Join us for some of our upcoming events" |
| 12 | + /> |
| 13 | + |
| 14 | + <!-- Link Google Fonts --> |
| 15 | + <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| 16 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> |
| 17 | + <link |
| 18 | + href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Overpass+Mono:wght@300..700&display=swap" |
| 19 | + rel="stylesheet" |
| 20 | + /> |
| 21 | + |
| 22 | + <!-- Link CSS --> |
| 23 | + <link rel="stylesheet" type="text/css" href="assets/scss/Events.css" /> |
| 24 | + <link rel="stylesheet" type="text/css" href="assets/scss/default.css" /> |
| 25 | + |
| 26 | + <!-- jquery --> |
| 27 | + <script |
| 28 | + src="https://code.jquery.com/jquery-3.6.0.min.js" |
| 29 | + integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" |
| 30 | + crossorigin="anonymous" |
| 31 | + ></script> |
| 32 | + |
| 33 | + <!-- Loads module Html --> |
| 34 | + <script src="./components/Header.js"></script> |
| 35 | + <script src="./components/Footer.js"></script> |
| 36 | + </head> |
| 37 | + |
| 38 | + <body> |
| 39 | + <!-- Header will be loaded here --> |
| 40 | + <main> |
| 41 | + <!-- Mobile Page Navigation--> |
| 42 | + <div class="page-setup"> |
| 43 | + <div class="events-navigation"> |
| 44 | + <div class="upcoming-header active" id="upcoming-header"> |
| 45 | + Upcoming Events |
| 46 | + </div> |
| 47 | + <div class="previous-header" id="previous-header"> |
| 48 | + Previous Events |
| 49 | + </div> |
| 50 | + </div> |
| 51 | + <div class="upcoming-events-wrapper"> |
| 52 | + <h1 class="upcoming-title">Upcoming Events</h1> |
| 53 | + |
| 54 | + <!-- Event container with fixed buttons to scroll through events--> |
| 55 | + <div class="upcoming-card-wrapper"> |
| 56 | + <button class="back-button"> |
| 57 | + <img |
| 58 | + src="assets/images/icons/backward.png" |
| 59 | + alt="Back" |
| 60 | + class="button-img" |
| 61 | + /> |
| 62 | + </button> |
| 63 | + |
| 64 | + <div class="upcoming-events"> |
| 65 | + <!-- Event cards will be added here with Javascript--> |
| 66 | + </div> |
| 67 | + |
| 68 | + <button class="next-button"> |
| 69 | + <img |
| 70 | + src="assets/images/icons/forward.png" |
| 71 | + alt="Next" |
| 72 | + class="button-img" |
| 73 | + /> |
| 74 | + </button> |
| 75 | + </div> |
| 76 | + <!-- Previous Events cards which their time is before the current date are put here--> |
| 77 | + </div> |
| 78 | + <h1 class="previous-title">Previous Events</h1> |
| 79 | + <div class="previous-events-wrapper"> |
| 80 | + <div class="previous-events"> |
| 81 | + <!-- Event cards will be added here with Javascript--> |
| 82 | + </div> |
| 83 | + </div> |
| 84 | + </div> |
| 85 | + <!-- Popup HTML --> |
| 86 | + <div class="popup" id="popup"> |
| 87 | + <div class="popup-content"> |
| 88 | + <div class="first-column"> |
| 89 | + <img src="" alt="Event Image" class="popup-img" id="popup-img" /> |
| 90 | + <div class="time-hold"> |
| 91 | + <img |
| 92 | + src="assets/images/icons/clock_black.png" |
| 93 | + alt="Clock icon" |
| 94 | + class="popup-clock" |
| 95 | + /> |
| 96 | + <p class="popup-date" id="popup-date">Oct 10th, 24</p> |
| 97 | + <p class="popup-time" id="popup-time">8 pm - 11 pm</p> |
| 98 | + </div> |
| 99 | + <div class="location-hold"> |
| 100 | + <img |
| 101 | + src="assets/images/icons/waypoint_black.png" |
| 102 | + alt="Waypoint icon" |
| 103 | + class="popup-waypoint" |
| 104 | + /> |
| 105 | + <p class="popup-location" id="popup-location">UWB INV-011</p> |
| 106 | + </div> |
| 107 | + </div> |
| 108 | + <div class="second-column"> |
| 109 | + <h2 class="popup-title" id="popup-title">Event Title</h2> |
| 110 | + <p class="popup-description" id="popup-description">Description:</p> |
| 111 | + <div class="share"> |
| 112 | + <span class="link">Share</span> |
| 113 | + </div> |
| 114 | + </div> |
| 115 | + </div> |
| 116 | + </div> |
| 117 | + <script src="assets/javascript/Event.js"></script> |
| 118 | + </main> |
| 119 | + <!-- Footer will be loaded here --> |
| 120 | + </body> |
| 121 | +</html> |
0 commit comments