freeCodeCamp/views/resources/sitemap.jade

128 lines
2.4 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/install-screenhero
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/deploy-a-website
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/control-shortcuts
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/pair-program-with-team-viewer
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/login
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-03-06 08:20:39 +00:00
loc http://www.freecodecamp.com/chromebook
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/live-pair-programming
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/privacy
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/jquery-exercises
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/javascript-in-your-inbox
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
//- Users
each user in users
url
loc #{appUrl}/#{user.profile.username}
lastmod= now
changefreq daily
priority= 0.9
//- Products
each bonfire in bonfires
url
loc #{appUrl}/#{bonfire.name.replace(/\s/, '-')}
lastmod= now
changefreq weekly
priority= 0.5
//- Challenges
each challenge in challenges
url
loc #{appUrl}/#{challenge.challengeNumber}
lastmod= now
changefreq weekly
2015-03-09 14:18:31 +00:00
priority= 0.5
//- Stories
each story in stories
url
loc #{appUrl}/#{story.storyLink}
lastmod= now
changefreq daily
priority= 0.9
//- Nonprofit
each nonprofit in nonprofits
url
loc #{appUrl}/#{nonprofit.nonprofitLink}
lastmod= now
changefreq daily
priority= 0.9