Store-Update
This commit is contained in:
61
templates/store.html
Normal file
61
templates/store.html
Normal file
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta name="description" content="{{ .Description }}">
|
||||
<title>Store</title>
|
||||
<link rel="icon" type="image/vnd.icon" href="/static/img/favicon.ico">
|
||||
<link rel="stylesheet" href="/static/store.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1><a href="/" class="no-underline">Store</a></h1>
|
||||
<nav class="main-nav">
|
||||
<ul>
|
||||
<li><a class="no-underline" href="/">Start</a></li>
|
||||
<li><a class="no-underline" href="/page/welcome">Hallo</a></li>
|
||||
<li><a class="no-underline" href="/page/ai">KI</a></li>
|
||||
<li><a class="no-underline" href="/page/datenschutzerklaerung">Datenschutz</a></li>
|
||||
<li><a class="no-underline" href="/page/impressum">Impressum</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="wrapper">
|
||||
<div class="store-container">
|
||||
<div class="product-card">
|
||||
<img src="/static/img/shop/blades/blade_anvil.webp" alt="Paint 1">
|
||||
<div class="product-info">
|
||||
<h3>Anvil - Flight Blade TSB</h3>
|
||||
<p>Top Speed Balanced - Flightblade für dein Anvil Aerospace Schiff</p>
|
||||
<div class="product-footer">
|
||||
<span class="price">12.000 aUEC</span>
|
||||
<button class="buy-button">In den Warenkorb</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="product-card">
|
||||
<img src="/static/img/shop/blades/blade_aegis.webp" alt="Paint 2">
|
||||
<div class="product-info">
|
||||
<h3>Aegis - Flight Blade TSB</h3>
|
||||
<p>Top Speed Balanced - Flightblade für dein Aegis Dynamics Schiff</p>
|
||||
<div class="product-footer">
|
||||
<span class="price">10.000 aUEC</span>
|
||||
<button class="buy-button">In den Warenkorb</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Weitere Produktkarten können hier hinzugefügt werden -->
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="wrapper">
|
||||
© 2025 · Jan Bergner / B1ts Star Citizen Blog
|
||||
<hr>
|
||||
Ich verzichte auf Cookies, affiliate Links, Tracking und die Einbindung von Drittanbieter-Diensten.
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user