<h1>Here are {{ name }}'s words:</h1>
<table border="2">
<tr>
<th>WORDS</th>
</tr>
{% for word in results %}
<tr><td>{{ word }}</td></tr>
{% endfor %}
</table>