1<p>{rows | len} crate directories</p>
2<table>
3<tr>{{ for cell in header}}
4  <th{{ if vertical }} class="vertical"{{ endif }}>{cell}</th>{{ endfor }}
5</tr>
6{{ for row in rows }}
7<tr>{{ for cell in row }}
8  <td>{cell | unescaped}</td>{{ endfor }}
9</tr>{{ endfor }}
10</table>