github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v2/layouts/shortcodes/maturity-table.html (about) 1 <table class="maturity"> 2 <thead> 3 <tr> 4 <th>area</th> 5 <th>maturity</th> 6 <th>description</th> 7 </tr> 8 </thead> 9 {{ range $.Site.Data.maturity }} 10 {{ $data := .}} 11 {{/* {{ if or (not $data.feature) (not (eq $data.maturity "GA")) }}*/}} 12 {{ if not $data.feature }} 13 <tr> 14 <td><a href="{{$data.url}}">{{$data.area}}</a></td> 15 <td>{{ template "shortcodes/maturity-label.html" $data }}</td> 16 <td>{{$data.description}}</td> 17 </tr> 18 {{end}} 19 {{ end }} 20 </table>