Index.cshtml

45 lines | 991 B Blame History Raw Download

@{
    /**/

    ViewBag.Title = "Index";
    Layout = null;
}

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta charset="utf-8" />
</head>
<body>
    <a href="http://localhost:8081/">To webpack dev server</a>
    <div id="App"> </div>

    @* Bootstrap css *@
    <link rel="stylesheet"
          href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
          integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
          crossorigin="anonymous" />

    <!-- toastr notification -->
    <link rel="stylesheet"
          href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" />

    <!-- Tabulator -->
    <link href="https://unpkg.com/tabulator-tables@4.3.0/dist/css/tabulator.min.css" rel="stylesheet">

    @Scripts.RenderFormat("<script src='{0}' defer></script>",
      "/Scripts/app_bundle.js?" + DateTime.Now)

</body>
</html>