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
Binary file added Assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions Assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/social/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions Assets/social/preview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ site_dir: site

theme:
name: material
logo: Assets/logo.svg
favicon: Assets/favicon.png
custom_dir: overrides
palette:
- scheme: slate # dark — matches the project's terminal identity
primary: teal
Expand Down
61 changes: 61 additions & 0 deletions overrides/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!--
Material MkDocs theme override: inject Open Graph, Twitter Card, and JSON-LD structured data
via the extrahead block. All values come from MkDocs built-ins — no custom logic.
-->
{% extends "base.html" %}

{% block extrahead %}
{{ super() }}

{# Open Graph / Facebook #}
<meta property="og:type" content="website">
<meta property="og:site_name" content="{{ config.site_name }}">
<meta property="og:title" content="{{ page.title or config.site_name }}">
<meta property="og:description" content="{{ config.site_description }}">
<meta property="og:url" content="{{ page.canonical_url }}">
<meta property="og:image" content="{{ config.site_url }}Assets/social/preview.png">

{# Twitter Card #}
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{ page.title or config.site_name }}">
<meta name="twitter:description" content="{{ config.site_description }}">
<meta name="twitter:image" content="{{ config.site_url }}Assets/social/preview.png">

{# Static JSON-LD structured data #}
<script type="application/ld+json">
[
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "{{ config.site_url }}#website",
"url": "{{ config.site_url }}",
"name": "{{ config.site_name }}",
"description": "{{ config.site_description }}",
"publisher": {
"@id": "{{ config.site_url }}#organization"
}
},
{
"@type": "Organization",
"@id": "{{ config.site_url }}#organization",
"name": "{{ config.site_name }}",
"description": "{{ config.site_description }}",
"url": "{{ config.site_url }}"
},
{
"@type": "SoftwareSourceCode",
"name": "Provider-Aware Statusline",
"description": "Provider-Aware Statusline for Claude Code behind the OmniRoute LLM routing gateway — see which provider and model actually served your request.",
"url": "https://github.com/UnscriptedByKraMy/AI-Engineering-Lab/tree/main/Statusline",
"codeRepository": "https://github.com/UnscriptedByKraMy/AI-Engineering-Lab/tree/main/Statusline",
"programmingLanguage": "JavaScript",
"license": "https://github.com/UnscriptedByKraMy/AI-Engineering-Lab/blob/main/LICENSE",
"runtimePlatform": "Node.js"
}
]
}
]
</script>
{% endblock %}
Loading