aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/api/sitemap_xml.py
blob: 26a786b0091d04242d9193ff79428eb4b6627dad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from flask import Response

from pysite.base_route import RouteView


class SitemapXML(RouteView):
    path = "/sitemap.xml"
    name = "sitemap_xml"

    def get(self):
        return Response(self.render("sitemap.xml", urls=[]), content_type="application/xml")