Skip to content

Instantly share code, notes, and snippets.

@nishtacular
Created July 20, 2015 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nishtacular/d3667de3a45aaaf1746e to your computer and use it in GitHub Desktop.
Save nishtacular/d3667de3a45aaaf1746e to your computer and use it in GitHub Desktop.
Roots + Page.js
page.base('/')
page('index', (ctx, next) ->
# index page
)
page('about', (ctx, next) ->
# about page
)
page('contact', (ctx, next) ->
# contact page
)
page('*', (ctx, next) ->
# notfound page
)
page.start
dispatch: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment