fortunes.mustache 196 B

1234567891011121314151617
  1. {{<layout}}
  2. {{$title}}Fortunes{{/title}}
  3. {{$body}}
  4. <table>
  5. <tr>
  6. <th>id</th>
  7. <th>message</th>
  8. </tr>
  9. {{#req}}
  10. <tr>
  11. <td>{{id}}</td>
  12. <td>{{message}}</td>
  13. </tr>
  14. {{/req}}
  15. </table>
  16. {{/body}}
  17. {{/layout}}