<!doctype html>
<html>
<head>
    <title>Emoji Count - Results</title>
</head>
<body>
<table>
    <tr>
        <th>Emoji</th>
        <th>Count</th>
    </tr>
    {% for emoji, count in emoji_summary_messages['emoji_counts'] %}
    <tr>
        <th> {{ emoji }}</th>
        <td> {{ count }}</td>
    </tr>
    {% endfor %}
</table>
</body>
</html>