示例#1
0
def sitemap(request):
    map = Sitemap(build_absolute_uri=request.build_absolute_uri, )

    for section in 'core:index core:lead_landing core:podcast core:tech_talks modules:index'.split(
    ):
        map.add(reverse(section), changefreq='weekly')

    return map.response(pretty_print=settings.DEBUG, )
示例#2
0
def sitemap(request):
    map = Sitemap(build_absolute_uri=request.build_absolute_uri, )

    named_views = [
        'core:index', 'core:lead_landing', 'client_landing_page',
        'core:podcast', 'core:tech_talks', 'modules:index'
    ]
    for section in named_views:
        map.add(reverse(section), changefreq='weekly')

    return map.response(pretty_print=settings.DEBUG, )
示例#3
0
def sitemap(request):
    map = Sitemap(build_absolute_uri=request.build_absolute_uri, )

    named_views = [
        'core:index',
        'core:lead_landing',
        'checkout:pytools_lp',
        'member_landing_page',
        'core:podcast',
        'core:tech_talks',
        'modules:index',
        'launch:landing_page',
        'launch:cpl1',
        'launch:cpl2',
        'launch:cpl3',
    ]
    for section in named_views:
        map.add(reverse(section), changefreq='weekly')

    return map.response(pretty_print=settings.DEBUG, )