<cfsetting showdebugoutput="false">
<cfcontent type="application/xml; charset=utf-8" reset="true">
<cfset baseUrl = "https://www.reviveandco.com">
<cfset lastMod = dateFormat(now(), "yyyy-mm-dd")>
<cfset pages = [
  { loc: "/",                  priority: "1.0", changefreq: "weekly"  },
  { loc: "/locations.cfm",     priority: "0.9", changefreq: "monthly" },
  { loc: "/weymouth.cfm",      priority: "0.8", changefreq: "monthly" },
  { loc: "/milton.cfm",        priority: "0.8", changefreq: "monthly" },
  { loc: "/weymouth-menu.cfm", priority: "0.9", changefreq: "weekly"  },
  { loc: "/milton-menu.cfm",   priority: "0.9", changefreq: "weekly"  },
  { loc: "/accessibility.cfm", priority: "0.3", changefreq: "yearly"  },
  { loc: "/sitemap.cfm",       priority: "0.3", changefreq: "yearly"  }
]><cfoutput><?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><cfloop array="#pages#" item="p">
  <url>
    <loc>#baseUrl##p.loc#</loc>
    <lastmod>#lastMod#</lastmod>
    <changefreq>#p.changefreq#</changefreq>
    <priority>#p.priority#</priority>
  </url></cfloop>
</urlset></cfoutput>
