Logo Test
Test package for logo/favicon integration
Links
AI / Agents
gdtest-logo
A test package for logo/favicon integration.
Logo and favicon integration. Provides light and dark SVG logos via great-docs.yml config. Tests that the logo replaces the text title in the navbar (navbar.title: false), copies logo files into the build directory, and sets the SVG as favicon.
Source files
assets/
logo-dark.svg
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32"> <circle cx="16" cy="16" r="14" fill="#4da3ff"/> </svg>
logo.svg
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32"> <circle cx="16" cy="16" r="14" fill="#2780e3"/> </svg>
gdtest_logo/
__init__.py
"""A test package for logo integration."""
__version__ = "0.1.0"
__all__ = ["greet"]
def greet(name: str) -> str:
"""
Greet someone by name.
Parameters
----------
name
The name of the person to greet.
Returns
-------
str
A greeting string.
"""
return f"Hello, {name}!"README.md
# gdtest-logo A test package for logo/favicon integration.
great-docs.yml
display_name: Logo Test logo: light: assets/logo.svg dark: assets/logo-dark.svg