Files
mixtape/zero.Web/Views/Zero/Index.cshtml
T

31 lines
1.2 KiB
Plaintext
Raw Normal View History

@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
2020-04-15 15:13:38 +02:00
@model zero.Web.Models.ZeroBackofficeModel
@{ Layout = null; }
2020-03-22 14:18:34 +01:00
<!DOCTYPE html>
2020-03-22 14:47:59 +01:00
<html>
2020-03-22 14:18:34 +01:00
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex,nofollow">
<meta name="author" content="brothers">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="expires" content="0">
<link rel="icon" type="image/png" href="/assets/zero-icon.png" sizes="32x32">
<link rel="image_src" type="image/png" href="/assets/zero-icon.png" sizes="192x192" />
<link rel="shortcut icon" type="image/png" href="/assets/zero-icon.png" sizes="196x196">
2020-03-22 14:18:34 +01:00
<base href="~/">
2020-03-23 19:39:48 +01:00
<environment exclude="Development">
<link href="~/zero/Assets/app.css" rel="stylesheet" asp-append-version="true" />
2020-03-23 19:39:48 +01:00
</environment>
2020-03-24 23:09:29 +01:00
<title>zero</title>
2020-03-22 14:18:34 +01:00
</head>
2021-01-06 12:03:21 +01:00
<body class="theme-dark theme-rounded">
2020-03-22 14:18:34 +01:00
<div id="app"></div>
<script>
2020-10-16 14:02:10 +02:00
window.__zero = @Html.Raw(await Model.Vue.ConfigAsJson());
window.zero = window.__zero;
</script>
2020-11-01 23:23:36 +01:00
<script type="module" src="http://localhost:@(Model.Port)/vite/client"></script>
<script type="module" src="http://localhost:@(Model.Port)/app/app.js"></script>
2020-03-22 14:18:34 +01:00
</body>
</html>