Skip to content

Commit

Permalink
make html extensions work on the site
Browse files Browse the repository at this point in the history
  • Loading branch information
Techwraith committed Oct 7, 2012
1 parent 3491152 commit 382a79a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions site/config/router.js
Expand Up @@ -20,10 +20,10 @@
var router = new geddy.RegExpRouter();

router.get('/').to('Main.index');
router.get('/community').to('Main.community');
router.get('/documentation').to('Main.documentation');
router.get('/tutorial').to('Main.tutorial');
router.get('/faq').to('Main.faq');
router.get('/changelog').to('Main.changelog');
router.get('/community(.:format)').to('Main.community');
router.get('/documentation(.:format)').to('Main.documentation');
router.get('/tutorial(.:format)').to('Main.tutorial');
router.get('/faq(.:format)').to('Main.faq');
router.get('/changelog(.:format)').to('Main.changelog');

exports.router = router;

0 comments on commit 382a79a

Please sign in to comment.