Skip to content

Commit

Permalink
Merge pull request #4634 from unrolled/unrolled-4338-copyright
Browse files Browse the repository at this point in the history
Update copyright to match k8s docs site
  • Loading branch information
k8s-ci-robot committed May 11, 2022
2 parents 41fb691 + 02eb788 commit 22668ea
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
3 changes: 2 additions & 1 deletion site/config.toml
Expand Up @@ -92,7 +92,8 @@ weight = 1
# Everything below this are Site Params

[params]
copyright = "SIG CLI | Documentation Distributed under CC BY 4.0 | "
copyright_k8s = "The Kubernetes Authors"
copyright_linux = "Copyright © 2020 The Linux Foundation ®."

# First one is picked as the Twitter card image if not set on page.
# images = ["images/project-illustration.png"]
Expand Down
8 changes: 8 additions & 0 deletions site/i18n/en.toml
@@ -0,0 +1,8 @@
# i18n strings for the English (main) site.
# NOTE: Please keep the entries in alphabetical order when editing

[main_copyright_notice]
other = """The Linux Foundation &reg;. All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage" class="light-text">Trademark Usage page</a>"""

[main_documentation_license]
other = """The Kubernetes Authors | Documentation Distributed under <a href="https://git.k8s.io/website/LICENSE" class="light-text">CC BY 4.0</a>"""
29 changes: 29 additions & 0 deletions site/layouts/partials/footer.html
@@ -0,0 +1,29 @@
{{ $links := .Site.Params.links }}
<footer class="bg-dark row d-print-none" style="min-height: initial">
<div class="container-fluid mx-sm-5">
<div class="row">
<div class="col-12 text-center mt-3 mb-3">
{{ with .Site.Params.copyright_k8s }}<small class="text-white">&copy; {{ now.Year}} {{ T "main_documentation_license" | safeHTML }}</small>{{ end }}
<br />
{{ with .Site.Params.copyright_linux }}<small class="text-white">Copyright &copy; {{ now.Year }} {{ T "main_copyright_notice" | safeHTML }}</small>{{ end }}
<br />
<small class="text-white">ICP license: 京ICP备17074266号-3</small>
{{ with .Site.Params.privacy_policy }}<small class="ml-1"><a href="{{ . }}" target="_blank" rel="noopener">{{ 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 }}
</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 }}" aria-label="{{ .name }}">
<a class="text-white" target="_blank" rel="noopener" href="{{ .url }}" aria-label="{{ .name }}">
<i class="{{ .icon }}"></i>
</a>
</li>
{{ end }}
</ul>
{{ end }}

0 comments on commit 22668ea

Please sign in to comment.