98 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encore Discover Events</title>
<!-- CSS -->
<link rel="stylesheet" href="css/main.css">
<!-- Bootstrap (optional CSS framework) -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet">
</head>
<body>
<!-- HEADER -->
<header class="site-header">
<nav class="container d-flex justify-content-between align-items-center">
<h1 class="site-logo">Encore</h1>
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Events</a>
</li>
</ul>
</nav>
</header>
<!-- MAIN CONTENT -->
<main class="container mt-4">
<!-- SEARCH / FILTER SECTION -->
<section class="event-search mb-4">
<h2>Find Events</h2>
<div class="d-flex gap-2">
<input
id="city-input"
type="text"
class="form-control"
placeholder="Enter city (e.g. Zurich)"
>
<button
id="load-events"
class="btn btn-primary"
>
Search
</button>
</div>
</section>
<!-- EVENTS LIST -->
<section class="events">
<h2>Upcoming Events</h2>
<div id="event-list" class="events__list">
<p class="text-muted">Search for events to begin.</p>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="site-footer text-center mt-5 p-3">
<p>© 2026 Encore Event Discovery</p>
</footer>
<!-- JS -->
<script type="module" src="js/app.js"></script>
</body>
</html>