Files
rancher-docs/layouts/shortcodes/compatibility.html
2018-04-12 13:59:16 -07:00

22 lines
376 B
HTML

<table>
<thead>
<tr>
<th>Version</th>
<th>Host OS</th>
<th>Kubernetes*</th>
<th>Docker</th>
</tr>
</thead>
<tbody>
{{ range .Site.Data.compatibility.version }}
<tr>
<td>{{.number}}</td>
<td>{{.os}}</td>
<td>{{.kubernetes}}</td>
<td>{{.docker}}</td>
</tr>
{{ end }}
</tbody>
</table>