Created
May 31, 2012 13:44
-
-
Save inossidabile/2843507 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Joosy.namespace 'Posts', -> | |
| # Page that lists posts | |
| class @IndexPage extends ApplicationPage | |
| # Deterimes which Layout to wrap this page in | |
| @layout ApplicationLayout | |
| # Determines which template to use | |
| @view 'index' | |
| # Data fetching hook | |
| @fetch (complete) -> | |
| Post.find 'all', (posts) => | |
| # Passes collection to the template | |
| @data.posts = posts | |
| complete() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment