Created
October 25, 2010 00:37
-
-
Save mauricemach/644214 to your computer and use it in GitHub Desktop.
User-defined nested rendering, synchronous
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
ck = require 'coffeekup' | |
tpl = -> | |
html -> | |
head -> | |
title 'title' | |
body -> | |
render 'index.coffee' | |
render = (file) -> | |
code = require('fs').readFileSync file, 'utf8' | |
ck.render code, context: @ | |
puts ck.render tpl, locals: {render: render} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment