<?xml version='1.0' encoding='UTF-8'?>
<?xml-stylesheet type='text/xsl' href='/css/sitemap.xsl'?>
<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9' xmlns:xhtml='http://www.w3.org/1999/xhtml'>
	<url>
		<loc>https://goescalators.co.uk/pages-sitemap.xml</loc>
		<lastmod>2026-04-01</lastmod>
		<changefreq>monthly</changefreq>
		<priority>0.8</priority>
	</url>
</urlset>
<!-- 
    if (categories > 0)
    {
        if (!File.Exists(Server.MapPath("/feeds/categories-sitemap.xml")))
        {
            Utils.GenerateSitemap("categories");
        }
        sb.AppendLine("\t<url>");
        sb.AppendLine("\t\t<loc>" + Page.Protocol + "://" + Page.Host + "/categories-sitemap.xml</loc>");
        sb.AppendLine("\t\t<lastmod>" + DateTime.Now.AddDays(NumDaysInPast).ToString("yyyy-MM-dd") + "</lastmod>");
        sb.AppendLine("\t\t<changefreq>monthly</changefreq>");
        sb.AppendLine("\t\t<priority>0.8</priority>");
        sb.AppendLine("\t</url>");
    }

    if (products > 0)
    {
        if (!File.Exists(Server.MapPath("/feeds/products-sitemap.xml")))
        {
            Utils.GenerateSitemap("products");
        }
        sb.AppendLine("\t<url>");
        sb.AppendLine("\t\t<loc>" + Page.Protocol + "://" + Page.Host + "/products-sitemap.xml</loc>");
        sb.AppendLine("\t\t<lastmod>" + DateTime.Now.AddDays(NumDaysInPast).ToString("yyyy-MM-dd") + "</lastmod>");
        sb.AppendLine("\t\t<changefreq>monthly</changefreq>");
        sb.AppendLine("\t\t<priority>0.8</priority>");
        sb.AppendLine("\t</url>");
    }

    if (casestudies > 0)
    {
        if (!File.Exists(Server.MapPath("/feeds/casestudies-sitemap.xml")))
        {
            Utils.GenerateSitemap("casestudies");
        }
        sb.AppendLine("\t<url>");
        sb.AppendLine("\t\t<loc>" + Page.Protocol + "://" + Page.Host + "/casestudies-sitemap.xml</loc>");
        sb.AppendLine("\t\t<lastmod>" + DateTime.Now.AddDays(NumDaysInPast).ToString("yyyy-MM-dd") + "</lastmod>");
        sb.AppendLine("\t\t<changefreq>monthly</changefreq>");
        sb.AppendLine("\t\t<priority>0.8</priority>");
        sb.AppendLine("\t</url>");
    }

    if (blogs > 0)
    {
        if (!File.Exists(Server.MapPath("/feeds/blogs-sitemap.xml")))
        {
            Utils.GenerateSitemap("blogs");
        }
        sb.AppendLine("\t<url>");
        sb.AppendLine("\t\t<loc>" + Page.Protocol + "://" + Page.Host + "/blogs-sitemap.xml</loc>");
        sb.AppendLine("\t\t<lastmod>" + DateTime.Now.AddDays(NumDaysInPast).ToString("yyyy-MM-dd") + "</lastmod>");
        sb.AppendLine("\t\t<changefreq>monthly</changefreq>");
        sb.AppendLine("\t\t<priority>0.8</priority>");
        sb.AppendLine("\t</url>");
    } -->
