You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/Platform/Views/Home/Index.cshtml

19 lines
496 B

@inject IHostEnvironment env
@{
HideBread = true;
if (Context.Request.Query.ContainsKey("html"))
{
Layout = null;
@Html.Raw(System.IO.File.ReadAllText(System.IO.Path.Combine(env.ContentRootPath, "wwwroot", "index.html")))
}
else
{
<router-view></router-view>
@section scripts{
<script src="js/config.js"></script>
<script src="js/app.js"></script>
<script src="js/main.js"></script>
}
}
}