sigs.k8s.io/kueue@v0.6.2/site/layouts/shortcodes/blocks/sample-section.html (about) 1 {{ $api := .Get "api" }} 2 {{ $last_updated := "" }} 3 {{ $version := .Get "kfctl" }} 4 <div class="col-lg-12 mb-5 mb-lg-0 "> 5 {{ with .Get "title" }}<h4 class="h3 mt-3">{{ . }}</h4>{{ end }} 6 {{ with getJSON $api }} {{ $last_updated = (index (index (index (index . 0) "commit") "committer") "date") | dateFormat "2006/01/02" }} 7 <p class="text-muted">{{ "Last update " }} {{ $last_updated }} {{ with $version }}{{ "Kueue " }}{{ . }}{{ end }}</p>{{ end }} 8 <p class="mb-0">{{ .Inner }}</p> 9 {{ with .Get "url" }}<p><a href="{{ . }}">{{ "Go to sample" }}</a></p>{{ end }} 10 </div>