2020-11-10 21:44:20 +11:00

32 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="icon"
type="image/png" href="favicon.png"/>
<title>@ViewData["Title"] - Web</title>
@* <link rel="stylesheet" href="/css/bootstrap.min.css"/> *@
@* <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> *@
<link rel="stylesheet" href="~/build/bundle.css" asp-append-version="true"/>
@* <link rel="stylesheet" href="~/site.css" asp-append-version="true"/> *@
<environment include="Development">
<script> basePath = ''</script>
</environment>
<environment exclude="Development">
<script> basePath = '@Url.Content("~")'; </script>
</environment>
</head>
<body>
@RenderBody()
<!-- Load the "module" version on browsers that can support it. -->
<script type="module" src="https://unpkg.com/dimport?module" data-main="/build/main.js"></script>
<!-- Load the "nomodule" version on older browsers acts as fallback! -->
<script type="nomodule" nomodule src="https://unpkg.com/dimport/nomodule" data-main="/build/main.js">
</script>
<!-- Old style JS library -->
<!--script type="text/javascript" src="~/dist/bundle.js" asp-append-version="true"></script-->
@RenderSection("scripts", required: false)
</body>
</html>