@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html><head></head>
+<body>
+<table>
+<tr>
+<th>id</th>
+<th>message</th>
+</tr>
+{% for fortune in fortunes %}
+<td>{{ fortune.id }}</td>
+<td>{{ fortune.message }}</td>
+{% endfor %}
+</table>
+</body>
+</html>
+