47 lines
1.9 KiB
Plaintext
47 lines
1.9 KiB
Plaintext
@using Microsoft.AspNetCore.Components.Web
|
|
@namespace FoodsharingSiegen.Server.Pages
|
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<base href="~/"/>
|
|
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css"/>
|
|
<link href="css/site.css" rel="stylesheet"/>
|
|
<link href="FoodsharingSiegen.Server.styles.css" rel="stylesheet"/>
|
|
|
|
<!-- Material CSS -->
|
|
<link href="css/material.min.css" rel="stylesheet">
|
|
|
|
<!-- Add Material font (Roboto) and Material icon as needed -->
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i|Roboto+Mono:300,400,700|Roboto+Slab:300,400,700" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
|
|
<link href="css/all.min.css" rel="stylesheet" />
|
|
<link href="_content/Blazorise/blazorise.css" rel="stylesheet" />
|
|
<link href="_content/Blazorise.Material/blazorise.material.css" rel="stylesheet" />
|
|
<link href="_content/Blazorise.Icons.Material/blazorise.icons.material.css" rel="stylesheet" />
|
|
|
|
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered"/>
|
|
</head>
|
|
<body>
|
|
@RenderBody()
|
|
|
|
<div id="blazor-error-ui">
|
|
<environment include="Staging,Production">
|
|
An error has occurred. This application may no longer respond until reloaded.
|
|
</environment>
|
|
<environment include="Development">
|
|
An unhandled exception has occurred. See browser dev tools for details.
|
|
</environment>
|
|
<a href="" class="reload">Reload</a>
|
|
<a class="dismiss">🗙</a>
|
|
</div>
|
|
|
|
<script src="_framework/blazor.server.js"></script>
|
|
<script src="_content/Blazorise/blazorise.js"></script>
|
|
<script src="_content/Blazorise.Material/blazorise.material.js"></script>
|
|
</body>
|
|
</html> |