This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues/pull-requests.
flatfilecms/flatfilecms/templates/sitemap.jinja2

9 lines
306 B
Django/Jinja

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{%- for item in request.root.structure() %}{% if item != '/sitemap.xml' and item not in data.ignore %}
<url>
<loc>{{data.base_url}}{{item}}</loc>
</url>
{%- endif %}{%- endfor %}
</urlset>