aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Blazor/Pages/_Host.cshtml
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2020-12-20 10:44:58 +0200
committertranstrike <transtrike@gmail.com>2020-12-20 10:44:58 +0200
commita83b518a7a16d93f207bab8ec5c54c14c9493e23 (patch)
treec79d5dda1a6aebbbf54af0725a85ded830af8c3e /src/DevHive.Blazor/Pages/_Host.cshtml
parent8880e0efec7462f6865e528f01b9973c6e722e8b (diff)
downloadDevHive-a83b518a7a16d93f207bab8ec5c54c14c9493e23.tar
DevHive-a83b518a7a16d93f207bab8ec5c54c14c9493e23.tar.gz
DevHive-a83b518a7a16d93f207bab8ec5c54c14c9493e23.zip
Removed Razor, added Angular
Diffstat (limited to 'src/DevHive.Blazor/Pages/_Host.cshtml')
-rw-r--r--src/DevHive.Blazor/Pages/_Host.cshtml35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/DevHive.Blazor/Pages/_Host.cshtml b/src/DevHive.Blazor/Pages/_Host.cshtml
deleted file mode 100644
index 9c03a62..0000000
--- a/src/DevHive.Blazor/Pages/_Host.cshtml
+++ /dev/null
@@ -1,35 +0,0 @@
-@page "/"
-@namespace DevHive.Blazor.Pages
-@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
-@{
- Layout = null;
-}
-
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>DevHive.Blazor</title>
- <base href="~/" />
- <link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
- <link href="css/site.css" rel="stylesheet" />
- <link href="DevHive.Blazor.styles.css" rel="stylesheet" />
-</head>
-<body>
- <component type="typeof(App)" render-mode="ServerPrerendered" />
-
- <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>
-</body>
-</html>