istio.io/istio@v0.0.0-20240520182934-d79c90f27776/pkg/ctrlz/topics/assets/templates/collection/main.html (about)

     1  {{ define "content" }}
     2  
     3  {{ with $context := .}}
     4      <p>Collections</p>
     5  
     6      <table>
     7          <tbody>
     8          {{ range $context.Collections }}
     9              <tr>
    10                  <td><a href="{{.}}">{{.}}</a></td>
    11              </tr>
    12          {{ end }}
    13          </tbody>
    14      </table>
    15  {{end}}
    16  
    17  {{ template "last-refresh" .}}
    18  
    19  {{ end }}