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

     1  {{ define "content" }}
     2  
     3  {{ with $context := . }}
     4      {{ if ne $context.Error "" }}
     5          <b>{{$context.Error}}</b>
     6      {{else}}
     7          <p> Item {{ $context.Collection }}/{{ $context.Key }}</p>
     8          <div class="language-yaml highlighter-rouge">
     9              <div class="highlight">
    10                  <pre class="highlight"><code>{{ $context.Value }}</code></pre>
    11              </div>
    12          </div>
    13      {{end}}
    14  {{end}}
    15  {{ template "last-refresh" .}}
    16  
    17  {{ end }}