Add search engine indexing toggle, robots.txt, and sitemap.xml generation for compliance pages. Replace checkboxes with toggle components in the compliance page UI and add an "Open" button in the page header to quickly access the live compliance page. The search engine indexing toggle is disabled when the compliance page is inactive. Signed-off-by: Bryan Frimin <bryan@getprobo.com>
19 lines
436 B
XML
19 lines
436 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
<url>
|
|
<loc>{{ .BaseURL }}/overview</loc>
|
|
</url>
|
|
<url>
|
|
<loc>{{ .BaseURL }}/documents</loc>
|
|
</url>
|
|
<url>
|
|
<loc>{{ .BaseURL }}/subprocessors</loc>
|
|
</url>
|
|
<url>
|
|
<loc>{{ .BaseURL }}/updates</loc>
|
|
</url>
|
|
{{ range .Documents }} <url>
|
|
<loc>{{ $.BaseURL }}/documents/{{ . }}</loc>
|
|
</url>
|
|
{{ end }}</urlset>
|