Skip to content

Commit 33ce153

Browse files
realmarcinclaude
andcommitted
Add navigation link from UMAP page back to media browser
- Added "← Back to Media Browser" link in UMAP visualization header - Styled with translucent background and hover effect - Links to ../index.html for easy navigation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 215500a commit 33ce153

File tree

2 files changed

+41
-5
lines changed

2 files changed

+41
-5
lines changed

docs/media_umap.html

Lines changed: 23 additions & 5 deletions
Large diffs are not rendered by default.

src/culturemech/templates/media_umap.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,23 @@
3636
opacity: 0.95;
3737
}
3838

39+
.nav-link {
40+
display: inline-block;
41+
margin-top: 15px;
42+
padding: 10px 20px;
43+
background: rgba(255, 255, 255, 0.2);
44+
color: white;
45+
text-decoration: none;
46+
border-radius: 6px;
47+
font-size: 14px;
48+
transition: background 0.2s;
49+
backdrop-filter: blur(10px);
50+
}
51+
52+
.nav-link:hover {
53+
background: rgba(255, 255, 255, 0.3);
54+
}
55+
3956
.container {
4057
display: grid;
4158
grid-template-columns: 1fr 1fr;
@@ -164,6 +181,7 @@
164181
<header>
165182
<h1>🧫 CultureMech Media UMAP Visualization</h1>
166183
<p>Explore {{ derived_count + direct_count }} culture media recipes through semantic similarity</p>
184+
<a href="../index.html" class="nav-link">← Back to Media Browser</a>
167185
</header>
168186

169187
<div class="container">

0 commit comments

Comments
 (0)