mirror of
				https://github.com/yummy4friends/y4f.git
				synced 2025-10-31 04:17:56 +01:00 
			
		
		
		
	* Page: "Warenkorb" created * Fixed: Spacing between border rows * Update ShoppingCart.razor
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| 
 | |
| <head>
 | |
|     <meta charset="utf-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
 | |
|     <title>y4f</title>
 | |
|     <base href="/" />
 | |
|     <link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
 | |
|     <link href="css/Site.css" rel="stylesheet" />
 | |
|     <link href="css/app.css" rel="stylesheet" />
 | |
|     <link href="css/shopping_cart.css" rel="stylesheet" />
 | |
|     <link rel="icon" type="image/png" href="favicon.png" />
 | |
|     <link href="y4f.styles.css" rel="stylesheet" />
 | |
|     <link href="manifest.json" rel="manifest" />
 | |
|     <link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
 | |
|     <link rel="apple-touch-icon" sizes="192x192" href="icon-192.png" />
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|     <div id="app">
 | |
|         <svg class="loading-progress">
 | |
|             <circle r="40%" cx="50%" cy="50%" />
 | |
|             <circle r="40%" cx="50%" cy="50%" />
 | |
|         </svg>
 | |
|         <div class="loading-progress-text"></div>
 | |
|     </div>
 | |
| 
 | |
|     <div id="blazor-error-ui">
 | |
|         An unhandled error has occurred.
 | |
|         <a href="" class="reload">Reload</a>
 | |
|         <a class="dismiss">🗙</a>
 | |
|     </div>
 | |
|     <script src="_framework/blazor.webassembly.js"></script>
 | |
|     <script>navigator.serviceWorker.register('service-worker.js');</script>
 | |
| </body>
 | |
| 
 | |
| </html>
 |