Skip to content

Commit 8285041

Browse files
🌱 docs(footer): Add trademark disclaimer (#3132)
* docs(footer): Add trademark disclaimer * Amend copyright on doc's footer Co-authored-by: Rob Scott <rob.scott87@gmail.com> * docs(copyright): Add trailing line --------- Co-authored-by: Rob Scott <rob.scott87@gmail.com>
1 parent 8e1e8a0 commit 8285041

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ repo_url: https://github.com/kubernetes-sigs/gateway-api
33
repo_name: kubernetes-sigs/gateway-api
44
site_dir: site
55
docs_dir: site-src
6+
trademark: https://www.linuxfoundation.org/legal/trademark-usage
67
extra_css:
78
- stylesheets/extra.css
89
extra_javascript:
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!--
2+
Copyright (c) Kubernetes Authors and Martin Donath <martin.donath@squidfunk.com>
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy
5+
of this software and associated documentation files (the "Software"), to
6+
deal in the Software without restriction, including without limitation the
7+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8+
sell copies of the Software, and to permit persons to whom the Software is
9+
furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in
12+
all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20+
IN THE SOFTWARE.
21+
-->
22+
23+
<!-- Copyright and theme information -->
24+
<div class="md-copyright">
25+
{% if config.trademark %}
26+
<p>
27+
The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation,
28+
please see our <a href="{{ config.trademark }}">Trademark Usage page</a>.
29+
</p>
30+
{% endif %}
31+
{% if not config.extra.generator == false %}
32+
Made with
33+
<a
34+
href="https://squidfunk.github.io/mkdocs-material/"
35+
target="_blank" rel="noopener"
36+
>
37+
Material for MkDocs
38+
</a>
39+
{% endif %}
40+
</div>

0 commit comments

Comments
 (0)