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

21 lines
406 B
HTML

<table>
<thead>
<tr>
<th>Rancher Version</th>
<th>Release Date</th>
<th>End full support</th>
<th>Dend maintainance support</th>
</tr>
</thead>
<tbody>
{{ range .Site.Data.support.table }}
<tr>
<td>{{.rancher}}</td>
<td>{{.release}}</td>
<td>{{.full}}</td>
<td>{{.maintain}}</td>
</tr>
{{ end }}
</tbody>
</table>