A handful of linked-object resources hosted as static files on GitHub Pages, each rendered by the Linked Object Browser.
Live: https://linkedobjects.org/demo/
| Path | Type | What you see |
|---|---|---|
/profile/ |
foaf:Person |
A profile pane |
/tasks/ |
wf:Tracker |
A to-do list (Tasks pane) |
/notes/ |
TextDocument (text/markdown) |
Rendered markdown |
/playlist/ |
Playlist (audio/mpegurl) |
Audio queue (Playlist pane) |
/folder/ |
ldp:BasicContainer |
Directory listing |
Each URL is a static HTML file containing two things:
<div id="mashlib"></div>
<script type="application/ld+json">
{ "@id": "#this", "@type": "...", ... }
</script>
<script type="module" src="https://linkedobjects.org/browser/mashlib.js"></script>The browser finds the data island, picks the matching pane, and renders. No backend, no JSS, no build step — just inline JSON-LD and the mashlib module.
To change a resource, edit its index.html, push to gh-pages, reload.
AGPL-3.0 — same as the browser.