From 3e13aa64d043824dafd62ac12ce2194bd2ffe157 Mon Sep 17 00:00:00 2001 From: Clayton J Barnette Date: Mon, 30 Oct 2023 13:40:18 -0400 Subject: [PATCH] Added sitemap.xml --- _includes/meta.html | 12 +++-- sitemap.xml | 119 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 127 insertions(+), 4 deletions(-) create mode 100644 sitemap.xml diff --git a/_includes/meta.html b/_includes/meta.html index 489502293..364423d68 100644 --- a/_includes/meta.html +++ b/_includes/meta.html @@ -59,7 +59,7 @@ ================================================== --> - + @@ -76,7 +76,11 @@ - - - + + + + + + + diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 000000000..d61305116 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,119 @@ +--- +# File: sitemap.xml for IDManagement.gov +# Note: Collection-based: Each collection added to the site should be added here also +# Date: 1026/2023 +# +layout: +--- + + + + + + {% for docs in site.arch %} + + {{ site.url }}{{ docs.permalink }} + weekly + 1.0 + + {% for sub in docs.subnav %} + + {{ site.url }}{{docs.permalink}}{{ sub.href }} + weekly + 1.0 + + {% endfor %} + {% endfor %} + + + {% for docs in site.ficampmo %} + + {{ site.url }}{{ docs.permalink }} + weekly + 1.0 + + {% for sub in docs.subnav %} + + {{ site.url }}{{docs.permalink}}{{ sub.href }} + weekly + 1.0 + + {% endfor %} + {% endfor %} + + + {% for docs in site.implement %} + + {{ site.url }}{{ docs.permalink }} + weekly + 1.0 + + {% for sub in docs.subnav %} + + {{ site.url }}{{docs.permalink}}{{ sub.href }} + weekly + 1.0 + + {% endfor %} + {% endfor %} + + + {% for docs in site.partners %} + + {{ site.url }}{{ docs.permalink }} + weekly + 1.0 + + {% for sub in docs.subnav %} + + {{ site.url }}{{docs.permalink}}{{ sub.href }} + weekly + 1.0 + + {% endfor %} + {% endfor %} + + + {% for docs in site.playbooks %} + + {{ site.url }}{{ docs.permalink }} + weekly + 1.0 + + {% for sub in docs.subnav %} + + {{ site.url }}{{docs.permalink}}{{ sub.href }} + weekly + 1.0 + + {% endfor %} + {% endfor %} + + + {% for docs in site.university %} + + {{ site.url }}{{ docs.permalink }} + weekly + 1.0 + + {% for sub in docs.subnav %} + + {{ site.url }}{{docs.permalink}}{{ sub.href }} + weekly + 1.0 + + {% endfor %} + {% endfor %} + + + {% for page in site.pages %} + {% if page.url contains '.xml' or page.url contains 'assets' %}{% else %} + + {{ site.url }}{{ page.url }} + monthly + 1.0 + + {% endif %} + {% endfor %} + + \ No newline at end of file