tags:

views:

58

answers:

1

the code is:

val nav =  Menu(Loc("Home",List("index"),"home"))  :: 
Menu(Loc("Daily",List("daily"),"daily")) ::
Menu(Loc("Photo",List("photo"),"photo")) ::Nil`

hi,I an newer in scala and liftweb but i troubled when i built navigation in snippet help me please

+3  A: 

For more information on Lift's SiteMap, please see http://dweetta.assembla.com/wiki/show/liftweb/SiteMap

David Pollak