29 lines
686 B
HTML
29 lines
686 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Event-Detail</title>
|
|
<link rel="stylesheet" href="css/event_overview.css">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="navbar">
|
|
<div class="logo">SOCIAL COOKING</div>
|
|
<nav>
|
|
<a href="index.html">Events</a>
|
|
<div class="user-profile">M</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<div id="detail-view">
|
|
<p>Lädt Event-Details...</p>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="js/event_overview.js"></script>
|
|
<script src="js/event_detail.js"></script>
|
|
|
|
</body>
|
|
</html> |