UNPKG

240 Btext/coffeescriptView Raw
1require('zappa') ->
2 enable 'default layout'
3
4 get '/': ->
5 @franks = ['miller', 'oz', 'sinatra', 'zappa']
6 render 'index'
7
8 view index: ->
9 @title = 'Zappa example'
10 h1 @title
11 ul ->
12 for f in @franks
13 li f