_Layout.cshtml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. @using Abp.Timing
  2. @{
  3. Layout = null;
  4. }
  5. <!DOCTYPE html>
  6. <html lang="en" >
  7. <head>
  8. <meta charset="utf-8" />
  9. <title>AbpZeroTemplate</title>
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  11. <meta content="width=device-width, initial-scale=1.0" name="viewport" />
  12. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  13. @* Fill these meta tags upon your project specification *@
  14. <script type="text/javascript">
  15. @* This is used to get the application's root path from javascript.
  16. It's useful if you're running application in a virtual directory under IIS. *@
  17. var abp = abp || {}; abp.appPath = '@ApplicationPath';
  18. </script>
  19. </head>
  20. <body class="header-fixed">
  21. @RenderBody()
  22. <script type="text/javascript">
  23. abp.localization.defaultSourceName = '@LocalizationSourceName';
  24. </script>
  25. <!-- Dynamic scripts of ABP system (They are created on runtime and can not be bundled) -->
  26. <script src="@(ApplicationPath)AbpScripts/GetScripts?v=@(Clock.Now.Ticks)" type="text/javascript"></script>
  27. </body>
  28. </html>