mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
26 lines
805 B
HTML
26 lines
805 B
HTML
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Lista wydarzeń</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="/css/style.css" />
|
|
</head>
|
|
<body class="bg-light">
|
|
|
|
<div class="container mt-5">
|
|
<div class="d-flex justify-content-between align-items-center mb-4">
|
|
<h1 class="text-primary">📅 Wydarzenia</h1>
|
|
<a href="/create.html" class="btn btn-success">+ Dodaj nowe</a>
|
|
</div>
|
|
|
|
<div id="eventList" class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
|
|
</div>
|
|
</div>
|
|
|
|
<script type="module" src="/js/eventList.js"></script>
|
|
<script type="module" src="/js/eventDelete.js"></script>
|
|
|
|
</body>
|
|
</html>
|