Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any Scala template engines other than scalate?

I'm tring to embed scalate in my website with sbt+jrebel, but found there are some problems I can't resolve.

So I want to know if there any other template engines based on scala?

like image 920
Freewind Avatar asked Mar 12 '11 06:03

Freewind


1 Answers

Pure Scala DSLs:

  • scala-xml (not sure how long this will be supported though)
  • ScalaTags

"Regular" templating engines:

  • Twirl
  • JSP (Java)
  • Freemarker (Java)
  • Velocity (Java)
  • Thymeleaf (Java)
  • Mustache.java (Java)
like image 102
Jonathan Boudreau Avatar answered Oct 08 '22 18:10

Jonathan Boudreau