Files
freeCodeCamp/server/views/resources/sitemap.jade

69 lines
1.4 KiB
Plaintext
Raw Normal View History

2015-03-06 00:13:58 -08:00
doctype xml
urlset(xmlns="http://www.sitemaps.org/schemas/sitemap/0.9")
url
2015-03-06 00:20:39 -08:00
loc http://www.freecodecamp.com/
2015-03-06 00:13:58 -08:00
changefreq weekly
lastmod= now
2015-05-02 16:50:59 -07:00
priority= 0.9
2015-03-06 00:13:58 -08:00
url
2015-03-06 00:20:39 -08:00
loc http://www.freecodecamp.com/nonprofits
2015-03-06 00:13:58 -08:00
changefreq weekly
lastmod= now
2015-05-02 16:50:59 -07:00
priority= 0.9
2015-03-06 00:13:58 -08:00
url
2015-05-02 16:50:59 -07:00
loc http://www.freecodecamp.com/pmi-acp-agile-project-managers
2015-03-06 00:13:58 -08:00
changefreq weekly
lastmod= now
2015-05-02 16:50:59 -07:00
priority= 0.9
2015-03-06 00:13:58 -08:00
url
2015-05-02 16:50:59 -07:00
loc http://www.freecodecamp.com/map
2015-03-06 00:13:58 -08:00
changefreq weekly
lastmod= now
2015-05-02 16:50:59 -07:00
priority= 0.9
2015-03-06 00:13:58 -08:00
url
2015-05-02 16:50:59 -07:00
loc http://www.freecodecamp.com/twitch
changefreq weekly
2015-03-06 00:13:58 -08:00
lastmod= now
2015-05-02 16:50:59 -07:00
priority= 0.9
2015-03-06 00:13:58 -08:00
//- User
each user in users
url
loc #{appUrl}/#{user}
lastmod= now
changefreq daily
2015-05-02 16:50:59 -07:00
priority= 0.5
2015-03-06 00:13:58 -08:00
each challenge in challenges
url
loc #{appUrl}/challenges/#{challenge.replace(/\s/g, '-')}
2015-03-06 00:13:58 -08:00
lastmod= now
changefreq weekly
2015-03-09 07:18:31 -07:00
priority= 0.5
each story in stories
url
2015-04-30 17:22:14 -07:00
loc #{appUrl}/news/#{story.replace(/\s/g, '-')}
2015-03-09 07:18:31 -07:00
lastmod= now
changefreq daily
priority= 0.9
each nonprofit in nonprofits
url
loc #{appUrl}/nonprofits/#{nonprofit.replace(/\s/g, '-')}
2015-04-08 15:05:24 -07:00
lastmod= now
changefreq daily
priority= 0.9
each fieldGuide in fieldGuides
url
loc #{appUrl}/field-guide/#{fieldGuide.replace(/\s/g, '-')}
2015-04-08 15:05:24 -07:00
lastmod= now
changefreq daily
priority= 0.9