1234567891011121314151617181920212223242526 |
- <!--Areas文件夹下表单页面白色背景模板-->
- @inject Microsoft.AspNetCore.Hosting.IWebHostEnvironment HostingEnvironment
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="renderer" content="webkit|ie-comp|ie-stand">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
- <meta http-equiv="Cache-Control" content="no-siteapp" />
- @await Html.PartialAsync("_Form.cshtml")
- @RenderSection("header", false)
- <script type="text/javascript">
- var ctx = '@Url.Content("~/")';
- </script>
- </head>
- <body class="white-bg">
- @RenderBody()
- @RenderSection("footer", false)
- @BundlerHelper.Render(HostingEnvironment.ContentRootPath, Url.Content("~/yisha/css/yisha.min.css"))
- @BundlerHelper.Render(HostingEnvironment.ContentRootPath, Url.Content("~/yisha/js/yisha-init.min.js"))
- </body>
- </html>
|