68 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "store" }}
 | |
| <!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">
 | |
| 
 | |
|             <blockquote>
 | |
|               <p>💜 <ins>Dies ist eine Testseite für das Spiel Star Citizen und ist nicht produktiv :)</ins></p>
 | |
|             </blockquote>
 | |
| 
 | |
|             <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">Verfügbar</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">Verfügbar</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>
 | |
| {{ end }} |