22 lines
768 B
Plaintext
22 lines
768 B
Plaintext
<!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="bootstrap/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="app.css" />
|
|
<link rel="stylesheet" href="ServerManagement.styles.css" />
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<HeadOutlet />
|
|
</head>
|
|
|
|
<body>
|
|
@* Note that @rendermode="InteractiveServer" can be used here on Routes to make it global. But this is not recommended by Microsoft. See: https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-modes?view=aspnetcore-9.0 *@
|
|
<Routes/>
|
|
<script src="_framework/blazor.web.js"></script>
|
|
</body>
|
|
|
|
</html>
|