This is a piece of code found in a webview directory in an Android project.
<script id="table" type="text/template">
<table>
{% _.each(data.rows, function(row) { %}
<tr>
{% if (row.length == 1) { %}
<td style="text-align: center" colspan="{{data.maxRowLength}}">
{{row[0]}}
</td>
{% } else { %}
{% _.each(row, function(cell) { %}
<td>{{ cell }}</td>
{% }) %}
{% } %}
</tr>
{% }) %}
</table>
<br>
</script>