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