Skip to content

Commit 3448b8b

Browse files
etzmclaude
andcommitted
Remove emojis, pip install commands, and color-coded card borders
- Use JPEG logo as favicon - Remove pip install from iscc-bio and omero-iscc tool cards - Change challenge card top borders to neutral grey - Remove all emoji icons from challenge, features, and tool cards Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 58eb44d commit 3448b8b

File tree

8 files changed

+23
-21
lines changed

8 files changed

+23
-21
lines changed

_data/challenge.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ section_title: "Enhancing AI-Readiness of Bioimaging Data<br/>with Content-Based
99

1010
cards:
1111
- id: challenge
12-
icon: ""
12+
icon: ""
1313
heading: Challenge
1414
items:
1515
- strong: "Growing volume of data:"
@@ -26,7 +26,7 @@ cards:
2626
processing steps that produced them.
2727
2828
- id: solution
29-
icon: "💡"
29+
icon: ""
3030
heading: Solution
3131
items:
3232
- strong: "International Standard Content Code (ISCC ISO 24138)."
@@ -45,7 +45,7 @@ cards:
4545
data in repositories with images in papers.
4646
4747
- id: impact
48-
icon: "🔬"
48+
icon: ""
4949
heading: Scientific Impact
5050
items:
5151
- strong: "Cryptographic figure data verification"

_data/features.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,37 @@ section_sub: >
1111
in modern research environments.
1212
1313
features:
14-
- icon: "🛡️"
14+
- icon: ""
1515
title: ISO 24138:2024 Compliant
1616
description: >
1717
Implements the official international standard, ensuring global
1818
interoperability across institutions, repositories, and tools.
1919
20-
- icon: ""
20+
- icon: ""
2121
title: High Performance
2222
description: >
2323
Rust-based engine processes data at 1+ GB/s — up to 184× faster
2424
than the pure Python reference implementation, and faster than SHA-256.
2525
26-
- icon: "🔬"
26+
- icon: ""
2727
title: Format Agnostic
2828
description: >
2929
Works with OME-TIFF, OME-Zarr, CZI, ND2, LIF, DICOM, HDF5 and
3030
virtually any binary scientific data format.
3131
32-
- icon: ""
32+
- icon: ""
3333
title: FAIR Principles
3434
description: >
3535
Supports Findable, Accessible, Interoperable, and Reusable data
3636
principles as mandated by EOSC and European funding bodies.
3737
38-
- icon: "🤖"
38+
- icon: ""
3939
title: AI-Ready Data
4040
description: >
4141
Persistent content-based identifiers survive format conversions
4242
and enable reliable provenance tracking for AI training datasets.
4343
44-
- icon: "🔄"
44+
- icon: ""
4545
title: Platform Integration
4646
description: >
4747
Native plugins for OMERO and Galaxy, with Napari, CellProfiler,

_data/tools.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ section_sub: >
1414
tools:
1515
- id: iscc-sum
1616
name: iscc-sum
17-
icon: ""
17+
icon: ""
1818
status: "Stable v0.1"
1919
status_color: green
2020
description: >
@@ -47,14 +47,14 @@ tools:
4747

4848
- id: iscc-bio
4949
name: iscc-bio
50-
icon: "🔬"
50+
icon: ""
5151
status: "Beta"
5252
status_color: amber
5353
description: >
5454
ISCC processing for multi-dimensional bioimage data. Implements the
5555
IMAGEWALK specification — deterministic Z→C→T plane traversal for
5656
format-agnostic, reproducible content hashing of microscopy volumes.
57-
install: pip install iscc-bio
57+
install: ""
5858
platforms:
5959
- Linux
6060
- macOS
@@ -79,14 +79,14 @@ tools:
7979

8080
- id: omero-iscc
8181
name: omero-iscc
82-
icon: "🔗"
82+
icon: ""
8383
status: "Alpha"
8484
status_color: amber
8585
description: >
8686
OMERO server integration plugin. Automatically generates and stores
8787
ISCC identifiers for images imported into OMERO, enabling
8888
facility-level deduplication and FAIR-compliant provenance tracking.
89-
install: pip install omero-iscc
89+
install: ""
9090
platforms:
9191
- Linux
9292
- macOS

_includes/challenge.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h2 class="section-title">{{ site.data.challenge.section_title }}</h2>
44
<div class="challenge-grid">
55
{% for card in site.data.challenge.cards %}
66
<div class="challenge-card challenge-{{ card.id }}">
7-
<div class="challenge-icon">{{ card.icon }}</div>
7+
{% if card.icon != "" %}<div class="challenge-icon">{{ card.icon }}</div>{% endif %}
88
<h3 class="challenge-heading">{{ card.heading }}</h3>
99
<ul class="challenge-list">
1010
{% for item in card.items %}

_includes/features.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h2 class="section-title">{{ site.data.features.section_title }}</h2>
66
<div class="features-grid">
77
{% for feature in site.data.features.features %}
88
<div class="feature-card">
9-
<div class="feature-icon">{{ feature.icon }}</div>
9+
{% if feature.icon != "" %}<div class="feature-icon">{{ feature.icon }}</div>{% endif %}
1010
<h3 class="feature-title">{{ feature.title }}</h3>
1111
<p class="feature-desc">{{ feature.description }}</p>
1212
</div>

_includes/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta name="description" content="{{ page.description | default: site.description }}">
44
<title>{% if page.title %}{{ page.title }} | {{ site.title }}{% else %}{{ site.title }} — {{ site.tagline }}{% endif %}</title>
55
{% seo %}
6-
<link rel="icon" type="image/svg+xml" href="{{ '/favicon.svg' | relative_url }}">
6+
<link rel="icon" type="image/jpeg" href="{{ '/assets/images/biocodes_logo.jpeg' | relative_url }}">
77
<link rel="preconnect" href="https://fonts.googleapis.com">
88
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
99
<link href="https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300;400;500;600;700&family=DM+Mono:wght@400&display=swap" rel="stylesheet">

_includes/tools.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@ <h2 class="section-title">{{ site.data.tools.section_title }}</h2>
77
{% for tool in site.data.tools.tools %}
88
<div class="tool-card" id="{{ tool.id }}">
99
<div class="tool-header">
10-
<span class="tool-icon">{{ tool.icon }}</span>
10+
{% if tool.icon != "" %}<span class="tool-icon">{{ tool.icon }}</span>{% endif %}
1111
<div>
1212
<h3 class="tool-name">{{ tool.name }}</h3>
1313
<span class="tool-status tool-status-{{ tool.status_color }}">{{ tool.status }}</span>
1414
</div>
1515
</div>
1616
<p class="tool-desc">{{ tool.description }}</p>
17+
{% if tool.install != "" %}
1718
<div class="tool-install">
1819
<code>{{ tool.install }}</code>
1920
</div>
21+
{% endif %}
2022
{% if tool.platforms.size > 0 %}
2123
<div class="tool-meta">
2224
<span class="tool-meta-label">Platforms:</span>

assets/css/style.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,15 +314,15 @@ ul {
314314
}
315315

316316
.challenge-challenge {
317-
border-top: 3px solid #c0392b;
317+
border-top: 3px solid #9e9e9e;
318318
}
319319

320320
.challenge-solution {
321-
border-top: 3px solid var(--color-teal);
321+
border-top: 3px solid #9e9e9e;
322322
}
323323

324324
.challenge-impact {
325-
border-top: 3px solid var(--color-accent);
325+
border-top: 3px solid #9e9e9e;
326326
}
327327

328328
.challenge-icon {

0 commit comments

Comments
 (0)