Skip to content

Commit e932b43

Browse files
jensensclaude
andcommitted
Add logo artwork and docs branding assets
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 338aa61 commit e932b43

9 files changed

Lines changed: 37 additions & 2 deletions

File tree

artwork/xray-pickles-elephant.png

2.32 MB
Loading
40.1 KB
Loading

docs/sources/_static/logo-400.png

164 KB
Loading

docs/sources/_static/logo-web.png

48.2 KB
Loading

docs/sources/_static/logo.png

255 KB
Loading

docs/sources/_static/og-image.png

806 KB
Loading
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "zodb-json-codec",
3+
"short_name": "zodb-json-codec",
4+
"description": "Pickle to JSON transcoder for ZODB, built in Rust with PyO3.",
5+
"start_url": "/zodb-json-codec/",
6+
"display": "browser",
7+
"background_color": "#1a1a2e",
8+
"theme_color": "#f97316",
9+
"icons": [
10+
{
11+
"src": "logo-web.png",
12+
"sizes": "200x133",
13+
"type": "image/png"
14+
},
15+
{
16+
"src": "apple-touch-icon.png",
17+
"sizes": "180x120",
18+
"type": "image/png"
19+
},
20+
{
21+
"src": "logo-400.png",
22+
"sizes": "400x267",
23+
"type": "image/png"
24+
},
25+
{
26+
"src": "logo.png",
27+
"sizes": "512x341",
28+
"type": "image/png"
29+
}
30+
]
31+
}
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
{# Extend the theme's layout to inject Open Graph meta #}
1+
{# Extend the theme's layout to inject icons, manifest, and Open Graph meta #}
22
{% extends "!layout.html" %}
33

44
{% block metatags %}
55
{{ super() }}
6+
<link rel="apple-touch-icon" sizes="180x120" href="{{ pathto('_static/apple-touch-icon.png', 1) }}">
7+
<link rel="manifest" href="{{ pathto('_static/site.webmanifest', 1) }}">
68
<meta property="og:type" content="website">
79
<meta property="og:title" content="{{ title }}">
810
<meta property="og:description" content="Fast pickle-to-JSON transcoder for ZODB, implemented in Rust via PyO3.">
11+
<meta property="og:image" content="https://bluedynamics.github.io/zodb-json-codec/_static/og-image.png">
912
<meta property="og:url" content="https://bluedynamics.github.io/zodb-json-codec/">
10-
<meta name="twitter:card" content="summary">
13+
<meta name="twitter:card" content="summary_large_image">
1114
{% endblock %}

docs/sources/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@
5353

5454
html_extra_path = ["llms.txt"]
5555
html_static_path = ["_static"]
56+
html_logo = "_static/logo-web.png"
5657
html_favicon = "_static/favicon.ico"

0 commit comments

Comments
 (0)