diff options
author | Fabricio Voznika <fvoznika@google.com> | 2019-04-04 10:45:10 -0700 |
---|---|---|
committer | Fabricio Voznika <fvoznika@gmail.com> | 2019-04-10 19:16:56 -0700 |
commit | 644a73cb468acca68a78ae0a881c7eb5bd16e750 (patch) | |
tree | b6d54eb501ca5d674ee2bad514a1d5ab6001375e /layouts/partials/footer.html | |
parent | 3513350de63079505a1ad142942cc50ae8e511dc (diff) |
Added "Powered by gVisor" image to footer
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r-- | layouts/partials/footer.html | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index b7bbbbdcf..b64e17dc0 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -12,22 +12,27 @@ <div class="col-6 col-sm-4 text-right text-xs-center order-sm-3"> {{ with $links }} {{ with index . "developer"}} - {{ template "footer-links-block" . }} - {{ end }} + <ul class="list-inline mb-0"> + {{ template "footer-links-block" . }} + {{ end }} + <li class="list-inline-item mx-2" > </li> + <li class="list-inline-item mx-2" > + <img src="/img/powered-gvisor.png" alt="Powered by gVisor"> + </li> + </ul> {{ end }} </div> <div class="col-12 col-sm-4 text-center py-2 order-sm-2"> {{ with .Site.Params.copyright }}<small class="text-white">© {{ now.Year}} {{ .}} {{ T "footer_all_rights_reserved" }}</small>{{ end }} {{ with .Site.Params.privacy_policy }}<small class="ml-1"><a href="{{ . }}">{{ T "footer_privacy_policy" }}</a></small>{{ end }} - {{ if not .Site.Params.ui.footer_about_disable }} - {{ with .Site.GetPage "about" }}<p class="mt-2"><a href="{{ .RelPermalink }}">{{ .Title }}</a></p>{{ end }} - {{ end }} + {{ if not .Site.Params.ui.footer_about_disable }} + {{ with .Site.GetPage "about" }}<p class="mt-2"><a href="{{ .RelPermalink }}">{{ .Title }}</a></p>{{ end }} + {{ end }} </div> </div> </div> </footer> {{ define "footer-links-block" }} -<ul class="list-inline mb-0"> {{ range . }} <li class="list-inline-item mx-2 h3" data-toggle="tooltip" data-placement="top" title="{{ .name }}"> <a class="text-white" target="_blank" rel="noopener" href="{{ .url }}"> @@ -35,5 +40,4 @@ </a> </li> {{ end }} -</ul> {{ end }} |