Open Source Web Application Framework for ASP.NET Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

53 lines
1.7 KiB

@using Volo.Abp.AspNetCore.Mvc.AntiForgery
@using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Components
@using Volo.AbpWebSite.Bundling
@using Volo.AbpWebSite.Pages.Shared.Components.Footer
@using Volo.AbpWebSite.Pages.Shared.Components.Header
@using Volo.AbpWebSite.Pages.Shared.Components.StandardMeta
@inject IAbpAntiForgeryManager AbpAntiForgeryManager
@inject IBrandingProvider BrandingProvider
@{
Layout = null;
AbpAntiForgeryManager.SetCookie();
}
<!DOCTYPE html>
<html lang="en">
<head>
<title>@(ViewBag.Title == null ? "abp.io" : ViewBag.Title)</title>
@await Component.InvokeAsync(typeof(StandardMetaViewComponent))
<abp-style-bundle name="@AbpIoBundles.Styles.Global" />
@await RenderSectionAsync("styles", false)
</head>
<body>
@await Component.InvokeAsync(typeof(HeaderViewComponent))
@RenderBody()
@await Component.InvokeAsync(typeof(FooterViewComponent))
<abp-script-bundle name="@AbpIoBundles.Scripts.Global" />
<script type="text/javascript" src="~/Abp/ApplicationConfigurationScript"></script>
<script type="text/javascript" src="~/Abp/ServiceProxyScript"></script>
<abp-script-bundle name="Volo.AbpWebSite.HomePageLayout">
<abp-script src="/js/prism/prism.js" />
<abp-script src="/js/vs.js" />
</abp-script-bundle>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-49982725-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-49982725-4');
</script>
@await RenderSectionAsync("scripts", false)
</body>
</html>