22 lines
915 B
HTML
22 lines
915 B
HTML
|
<!DOCTYPE html>
|
||
|
<!-- static/cart.html -->
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>Dark Athenaeum</title>
|
||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css" rel="stylesheet">
|
||
|
<link href="/css/styles.css" rel="stylesheet">
|
||
|
<link href="https://fonts.cdnfonts.com/css/old-english-text-mt" rel="stylesheet">
|
||
|
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
|
||
|
</head>
|
||
|
<body class="dark-theme">
|
||
|
<main class="container py-5">
|
||
|
<h2 class="neon-title mb-4">Twój koszyk</h2>
|
||
|
<div id="cart-items" class="row g-4"></div>
|
||
|
</main>
|
||
|
<script src="/js/cart.js"></script>
|
||
|
</body>
|
||
|
</html>
|