Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ repo_url: https://github.com/kubernetes-sigs/gateway-api
repo_name: kubernetes-sigs/gateway-api
site_dir: site
docs_dir: site-src
trademark: https://www.linuxfoundation.org/legal/trademark-usage
extra:
trademark: https://www.linuxfoundation.org/legal/trademark-usage
extra_css:
- stylesheets/extra.css
extra_javascript:
Expand Down Expand Up @@ -52,8 +53,8 @@ markdown_extensions:
- admonition
- meta
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.details
- pymdownx.highlight
- pymdownx.inlinehilite
Expand All @@ -70,17 +71,17 @@ nav:
- Overview:
- Introduction: index.md
- Concepts:
API Overview: concepts/api-overview.md
Conformance: concepts/conformance.md
Roles and Personas: concepts/roles-and-personas.md
Security Model: concepts/security-model.md
Tools: concepts/tooling.md
Use Cases: concepts/use-cases.md
Versioning: concepts/versioning.md
- API Overview: concepts/api-overview.md
- Conformance: concepts/conformance.md
- Roles and Personas: concepts/roles-and-personas.md
- Security Model: concepts/security-model.md
- Tools: concepts/tooling.md
- Use Cases: concepts/use-cases.md
- Versioning: concepts/versioning.md
- Service Mesh:
Overview: mesh/index.md
GAMMA Initiative: mesh/gamma.md
Service Facets: mesh/service-facets.md
- Overview: mesh/index.md
- GAMMA Initiative: mesh/gamma.md
- Service Facets: mesh/service-facets.md
- Implementations:
- List: implementations.md
- Comparisons:
Expand Down Expand Up @@ -180,3 +181,6 @@ nav:
- Enhancement Requests: contributing/enhancement-requests.md
- Release Cycle: contributing/release-cycle.md
- Contributor Ladder: contributing/contributor-ladder.md
not_in_nav: |
/blog/*
/geps/gep-696/*
4 changes: 2 additions & 2 deletions site-src/overrides/partials/copyright.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

<!-- Copyright and theme information -->
<div class="md-copyright">
{% if config.trademark %}
{% if config.extra.trademark %}
<p>
The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation,
please see our <a href="{{ config.trademark }}">Trademark Usage page</a>.
please see our <a href="{{ config.extra.trademark }}">Trademark Usage page</a>.
</p>
{% endif %}
{% if not config.extra.generator == false %}
Expand Down