-
-
Save ScottGuymer/5e619080831eaf28d830 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage | |
@using System.Linq; | |
@{ | |
Layout = null; | |
Response.ContentType = "text/xml"; | |
}<?xml version='1.0' encoding='UTF-8' ?> | |
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemalocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> | |
@ListChildNodes(Umbraco.TypedContent(UmbracoContext.Current.PageId).AncestorOrSelf(1)) | |
</urlset> | |
@helper ListChildNodes(IPublishedContent startNode) | |
{ | |
foreach (var node in startNode.Children.Where("hideInXmlSitemap == false")) | |
{ | |
if (node.TemplateId > 0) | |
{ | |
<url> | |
<loc>@GetUrlWithDomainPrefix(node.Url)</loc> | |
<lastmod>@(string.Format("{0:s}+00:00", node.UpdateDate))</lastmod> | |
</url> | |
} | |
if (node.Level <= 100 && node.Children.Count() > 0) | |
{ | |
@ListChildNodes(node) | |
} | |
} | |
} | |
@functions { | |
private static string GetUrlWithDomainPrefix(string url) | |
{ | |
if (url.StartsWith("/")) | |
url = url.Substring(1); | |
var domainPrefix = string.Format("http://{0}/", HttpContext.Current.Request.ServerVariables["HTTP_HOST"]); | |
if (url.StartsWith(domainPrefix)) | |
return url; | |
else | |
return domainPrefix + url; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment