This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: add PDS record link to island and strata pages

Links to pdsls.dev with the record AT URI so you can inspect
the raw lexicon record on the user's PDS.

👾 Generated with [Letta Code](https://letta.com)

Co-Authored-By: Letta Code <noreply@letta.com>

author
nandi
co-author
Letta Code
date (May 14, 2026, 4:24 AM UTC) commit 0350f046 parent 329ea27e
+8 -2
+2 -2
src/frontend/app.ts
··· 591 591 <div class="island-detail"> 592 592 <a href="/" class="back-link">&larr; Explore</a> 593 593 <h2>Island</h2> 594 - <p class="island-meta">${island.vertices!.length} vertices &middot; ${island.edges!.length} edges</p> 594 + <p class="island-meta">${island.vertices!.length} vertices &middot; ${island.edges!.length} edges${island.recordUri ? ` &middot; <a href="https://pdsls.dev/${encodeURIComponent(island.recordUri)}" target="_blank" rel="noopener" class="pds-link">View on PDS &nearr;</a>` : ""}</p> 595 595 596 596 <canvas class="island-graph-large" id="island-detail-graph"></canvas> 597 597 ··· 749 749 <div class="strata-page"> 750 750 <a href="/" class="back-link">&larr; Explore</a> 751 751 <p class="island-summary-large">${escHtml(summary)}</p> 752 - <p class="island-meta">${island.vertices!.length} vertices &middot; ${island.edges!.length} edges</p> 752 + <p class="island-meta">${island.vertices!.length} vertices &middot; ${island.edges!.length} edges${island.recordUri ? ` &middot; <a href="https://pdsls.dev/${encodeURIComponent(island.recordUri)}" target="_blank" rel="noopener" class="pds-link">View on PDS &nearr;</a>` : ""}</p> 753 753 754 754 <canvas class="island-graph-large" id="strata-graph"></canvas> 755 755
+6
src/landing-page.ts
··· 864 864 font-size: 0.875rem; 865 865 margin-bottom: 1.5rem; 866 866 } 867 + .pds-link { 868 + color: var(--accent); 869 + text-decoration: none; 870 + font-size: 0.8rem; 871 + } 872 + .pds-link:hover { text-decoration: underline; } 867 873 .island-section { 868 874 margin-bottom: 1.5rem; 869 875 }