PageRenderTime 19ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/samples/scalate-sample/src/main/webapp/mustache/errors/templateCompileError.mustache

http://github.com/scalate/scalate
Mustache | 16 lines | 13 code | 3 blank | 0 comment | 0 complexity | 38105996d7cdfc4ae43facf1670c99ca MD5 | raw file
  1. <h1>Some Data</h1>
  2. <table>
  3. <tr>
  4. <th>Name</th>
  5. <th>Description</th>
  6. </tr>
  7. {{#items}}
  8. <tr>
  9. <td>{{name}}</td>
  10. <td>{{description}}</td>
  11. </tr>
  12. <!-- missing close tag on purpose :)-->
  13. </table>