/samples/scalate-example/src/main/webapp/tableJade.jade
Jade | 18 lines | 15 code | 3 blank | 0 comment | 0 complexity | 4242e1c389509000b8c11c85698a5ee7 MD5 | raw file
- - val people = Map("James" -> "Mells", "Hiram" -> "Tampa")
- h1 Table Example
- .main
- table
- tr
- th Name
- th Location
- - for ((name, location) <- people)
- tr
- td= name
- td= location
-
- .description
- :markdown
- This is lots and lots of text.
- **Scalate** really is rather awesome!