github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v2/layouts/partials/footer.html (about)

     1  {{ $links := .Site.Params.links }}
     2  <footer class="skaffold-footer bg-dark row d-print-none splash">
     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-4 text-center py-2 order-sm-2">
    20          {{ with .Site.Params.copyright }}<small>&copy; {{ now.Year}} {{ .}} {{ T "footer_all_rights_reserved" }}</small><br/>{{ end }}
    21          {{ with .Site.Params.privacy_policy }}<small class="ml-1"><a href="{{ . }}" target="_blank">{{ T "footer_privacy_policy" }}</a></small>{{ 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 py-2">
    31    {{ range . }}
    32    <li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="{{ .name }}" aria-label="{{ .name }}">
    33      <a target="_blank" href="{{ .url }}">
    34        <i class="{{ .icon }}"></i>
    35      </a>
    36    </li>
    37    {{ end }}
    38  </ul>
    39  {{ end }}