-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsitemap.xml
21 lines (21 loc) · 931 Bytes
/
sitemap.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
title: "Accelerators | Microsoft US"
description: "Accelerators are repeatable solutions that can be quickly and easily implemented for specific business outcomes to accelerate transformation journey."
---
<?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">
<url>
<loc>{{ site.url-pretty }}/</loc>
<lastmod>{{ site.time | date_to_rfc822 -}}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
</url>
{%- for accelerator in site.accelerators -%}
<url>
<loc>{{ site.url-pretty }}{{ accelerator.url -}}</loc>
<lastmod>{{ site.time | date_to_rfc822 -}}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
</url>
{% endfor %}
</urlset>