Sinnes-tau.de Homepage
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
593 B

# sitemaps.py
from django.contrib import sitemaps
from django.urls import reverse
class StaticViewSitemap(sitemaps.Sitemap):
priority = 0.5
changefreq = 'daily'
def items(self):
return ['index',
'lamatour',
'wildnispaedagogik',
'externereferentin',
'kinderfreizeit',
'honigmassage',
'psychologischeberatung',
'pflanzenheilkunde',
'ohrakupunktur',
'impressum',]
def location(self, item):
return reverse(item)