<!DOCTYPE html> <html> <head><title>Fortunes</title></head> <body> <table> <tr> <th>id</th> <th>message</th> </tr> {{#each this}} <tr> <td>{{id}}</td> <td>{{message}}</td> </tr> {{/each}} </table> </body> </html>