Skip to content

Instantly share code, notes, and snippets.

@timperrett
Created October 4, 2009 20:28
Show Gist options
  • Save timperrett/201615 to your computer and use it in GitHub Desktop.
Save timperrett/201615 to your computer and use it in GitHub Desktop.
// in Boot.scala
LiftRules.snippetDispatch.append(
Map("hello_world" -> HelloWorld)
)
// in whatever.html
<lift:hello_world.talk />
// in YourFile.scala
object HelloWorld {
def list: NodeSeq = {
.....
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment