sigs.k8s.io/kueue@v0.6.2/site/layouts/partials/footer.html (about)

     1  {{ $links := .Site.Params.links }}
     2  <footer class="bg-dark pt-3 row d-print-none">
     3    <div class="container-fluid mx-sm-5">
     4      <div class="row">
     5        <div class="col-6 col-sm-4 text-xs-center order-sm-2">
     6          {{ with $links }}
     7          {{ with index . "user"}}
     8          {{ template "footer-links-block"  . }}
     9          {{ end }}
    10          {{ end }}
    11        </div>
    12        <div class="col-6 col-sm-4 text-right text-xs-center order-sm-3">
    13          {{ with $links }}
    14          {{ with index . "developer"}}
    15          {{ template "footer-links-block"  . }}
    16          {{ end }}
    17          {{ end }}
    18        </div>
    19        <div class="col-12 col-sm-5 text-center py-2 order-sm-2">
    20          {{ with .Site.Params.copyright }}<small class="text-white">&copy; {{ now.Year}} {{ .}} {{ "| Documentation Distributed under CC BY 4.0" }}</small>{{ end }}
    21          {{ with .Site.Params.privacy_policy }}<p><small class="ml-1"><a href="{{ . }}" target="_blank" rel="noopener">{{ T "footer_privacy_policy" }}</a></small></p>{{ end }}
    22  	{{ if not .Site.Params.ui.footer_about_disable }}
    23  		{{ with .Site.GetPage "about" }}<p class="mt-2"><a href="{{ .RelPermalink }}">{{ .Title }}</a></p>{{ end }}
    24  	{{ end }}
    25        </div>
    26      </div>
    27    </div>
    28  </footer>
    29  {{ define "footer-links-block" }}
    30  <ul class="list-inline mb-0">
    31    {{ range . }}
    32    <li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="{{ .name }}" aria-label="{{ .name }}">
    33      <a class="text-white" target="_blank" rel="noopener" href="{{ .url }}" aria-label="{{ .name }}">
    34        <i class="{{ .icon }}"></i>
    35      </a>
    36    </li>
    37    {{ end }}
    38  </ul>
    39  {{ end }}