-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.ejs
More file actions
47 lines (45 loc) · 1.73 KB
/
events.ejs
File metadata and controls
47 lines (45 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live Sessions & Special Events</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
<h1>Live Sessions & Special Events</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/courses">Courses</a></li>
<li><a href="/instructors">Instructors</a></li>
<li><a href="/events">Live Sessions and Special Events</a></li>
<li><a href="/faqs">FAQ</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="events-schedule card-grid">
<% if (events.length > 0) { %>
<% events.forEach(event => { %>
<div class="event-card">
<h3><%= event.title %></h3>
<% if (event.description) { %>
<p class="event-description"><%= event.description %></p>
<% } %>
<p class="event-schedule">🕒 <%= event.schedule %></p>
</div>
<% }); %>
<% } else { %>
<p>No events scheduled at the moment.</p>
<% } %>
</section>
</main>
<footer>
<img src="/img/Tech%20Grow%20website%20logo.jpg" alt="Tech Grow Logo" height="40" style="vertical-align: middle; margin-right: 10px;">
<p style="display: inline-block; vertical-align: middle;">2025 Tech Grow ©</p>
</footer>
</body>
</html>