Files
mixtape/zero.Backoffice/Views/Zero/Setup.cshtml
T

30 lines
917 B
Plaintext
Raw Normal View History

2020-04-06 11:03:55 +02:00
@using zero.Core.Extensions
@inject zero.Core.Options.IZeroOptions Options
2020-04-06 11:03:55 +02:00
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
2020-03-22 14:18:34 +01:00
@{
Layout = null;
}
<!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">
<base href="~/">
2020-03-23 19:39:48 +01:00
<environment exclude="Development">
2020-03-26 22:14:16 +01:00
<link href="~/Assets/setup.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>
<body>
2020-03-26 22:14:16 +01:00
<div id="application"></div>
2020-04-06 11:03:55 +02:00
<script>
window.zero = window.zero || {};
zero.path = "@Options.BackofficePath.EnsureEndsWith('/')";
2020-04-06 11:03:55 +02:00
</script>
<script src="~/Assets/setup.js" asp-append-version="true"></script>
2020-03-22 14:18:34 +01:00
</body>
</html>