{% extends "admin/base.html" %} {% block title %}Sitemap Management - Focomy{% endblock %} {% block header_title %}Sitemap Management{% endblock %} {% block content %}

Sitemap

View Sitemap
{% if message %}
{{ message }}
{% endif %}
Sitemap URL {{ site_url }}/sitemap.xml
Total URLs {{ total_urls }}
Last Generated {{ last_generated or 'Dynamic (on request)' }}

Included URLs

{% if urls %}
{% for url in urls[:50] %} {% endfor %}
URL Type Last Modified Priority
{{ url.loc }} {{ url.type }} {{ url.lastmod or '-' }} {{ url.priority }}
{% if urls | length > 50 %}

Showing first 50 of {{ urls | length }} URLs

{% endif %} {% else %}

No URLs in sitemap

{% endif %}

Sitemap Exclusions

{% for ct_name, ct in content_types.items() %} {% endfor %}
Selected content types will be excluded from the sitemap
Enter one URL path per line

robots.txt

View
{{ robots_txt }}
{% endblock %}