freeCodeCamp/views/resources/sitemap.jade

83 lines
1.6 KiB
Plaintext
Raw Normal View History

2015-03-06 08:13:58 +00:00
doctype xml
urlset(xmlns="http://www.sitemaps.org/schemas/sitemap/0.9")
url
2015-03-06 08:20:39 +00:00
loc http://www.freecodecamp.com/
2015-03-06 08:13:58 +00:00
changefreq weekly
lastmod= now
priority= 0.5
url
2015-03-06 08:20:39 +00:00
loc http://www.freecodecamp.com/nonprofits
2015-03-06 08:13:58 +00:00
changefreq weekly
lastmod= now
priority= 0.5
url
2015-03-06 08:20:39 +00:00
loc http://www.freecodecamp.com/learn-to-code
2015-03-06 08:13:58 +00:00
changefreq weekly
lastmod= now
priority= 0.5
url
2015-04-23 18:56:37 +00:00
loc http://www.freecodecamp.com/twitch
2015-03-06 08:13:58 +00:00
changefreq weekly
lastmod= now
priority= 0.5
//- Home page
url
loc= appUrl
lastmod= now
changefreq daily
priority= 0.8
//- User
each user in users
url
loc #{appUrl}/#{user}
lastmod= now
changefreq daily
priority= 0.9
2015-03-06 08:13:58 +00:00
//- Products
each bonfire in bonfires
url
loc #{appUrl}/bonfires/#{bonfire.replace(/\s/g, '-')}
2015-03-06 08:13:58 +00:00
lastmod= now
changefreq weekly
priority= 0.5
//- Challenges
each challenge in challenges
url
loc #{appUrl}/challenges/#{challenge.replace(/\s/g, '-')}
2015-03-06 08:13:58 +00:00
lastmod= now
changefreq weekly
2015-03-09 14:18:31 +00:00
priority= 0.5
//- Stories
each story in stories
url
2015-05-01 00:22:14 +00:00
loc #{appUrl}/news/#{story.replace(/\s/g, '-')}
2015-03-09 14:18:31 +00:00
lastmod= now
changefreq daily
priority= 0.9
2015-04-08 22:05:24 +00:00
//- Nonprofit
2015-03-09 14:18:31 +00:00
each nonprofit in nonprofits
url
loc #{appUrl}/nonprofits/#{nonprofit.replace(/\s/g, '-')}
2015-04-08 22:05:24 +00:00
lastmod= now
changefreq daily
priority= 0.9
//- Nonprofit
each fieldGuide in fieldGuides
url
loc #{appUrl}/field-guide/#{fieldGuide.replace(/\s/g, '-')}
2015-04-08 22:05:24 +00:00
lastmod= now
changefreq daily
priority= 0.9