_FormWhite.cshtml 993 B

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