-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (79 loc) · 4.38 KB
/
Copy pathindex.html
File metadata and controls
81 lines (79 loc) · 4.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>dash — your Solid pod dashboard</title>
<meta name="description" content="A self-hosted-style start page for your Solid pod: grouped service tiles, bookmarks, and live info widgets. Config lives on your pod and syncs across devices.">
<meta name="theme-color" content="#0b1020">
<meta property="og:type" content="website">
<meta property="og:url" content="https://solid-apps.github.io/dash/">
<meta property="og:site_name" content="dash">
<meta property="og:title" content="dash — your Solid pod dashboard">
<meta property="og:description" content="A self-hosted-style start page for your Solid pod — grouped services, bookmarks, and live widgets, configured on your pod and synced across every device.">
<meta property="og:image" content="https://solid-apps.github.io/dash/og.jpg">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="dash — your dashboard, on your pod. Grouped services, bookmarks, and live widgets.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://solid-apps.github.io/dash/">
<meta name="twitter:title" content="dash — your Solid pod dashboard">
<meta name="twitter:description" content="Grouped services, bookmarks, and live widgets — configured on your Solid pod and synced across devices.">
<meta name="twitter:image" content="https://solid-apps.github.io/dash/og.jpg">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="kit.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="topbar">
<span class="brand">◈ dash</span>
<div class="topbar-r">
<button id="editBtn" class="tbtn" type="button" hidden>Edit</button>
<a class="root" href="../../../" title="Go to your pod root">↑ root</a>
</div>
</div>
<main id="app" aria-live="polite"></main>
<div id="toast" class="toast" role="status" aria-live="polite"></div>
<!-- Board as a structured-data island. dash renders this when no pod board
is loaded (signed out, or ?src= not given), and seeds a fresh pod from
it on first sign-in. Edit this JSON-LD to author a static board — or
point dash at any published dash:Board doc with ?src=<url>. -->
<script type="application/ld+json" id="board">
{
"@context": { "dash": "https://solid-apps.github.io/dash/ns#" },
"@type": "dash:Board",
"title": "dash",
"search": "duckduckgo",
"groups": [
{ "name": "Solid Apps", "columns": 2, "services": [
{ "name": "glass", "href": "https://solid-apps.github.io/glass/", "subtitle": "liquid-glass desktop", "icon": "❖" },
{ "name": "home", "href": "https://solid-apps.github.io/home/", "subtitle": "app launcher", "icon": "🏠" },
{ "name": "portal", "href": "https://solid-apps.github.io/portal/", "subtitle": "link directory", "icon": "🧭" },
{ "name": "explorer", "href": "https://solid-apps.github.io/explorer/", "subtitle": "pod file browser", "icon": "📁" }
]},
{ "name": "Media", "columns": 1, "services": [
{ "name": "music", "href": "https://solid-apps.github.io/music/", "subtitle": "pod music player", "icon": "🎵" },
{ "name": "video", "href": "https://solid-apps.github.io/video/", "subtitle": "pod video", "icon": "🎬" },
{ "name": "gallery", "href": "https://solid-apps.github.io/gallery/", "subtitle": "photo albums", "icon": "🖼️" }
]}
],
"bookmarks": [
{ "name": "Solid", "links": [
{ "name": "solidproject.org", "href": "https://solidproject.org" },
{ "name": "MDN", "href": "https://developer.mozilla.org" },
{ "name": "GitHub", "href": "https://github.com/solid-apps" }
]}
]
}
</script>
<!-- xlogin: one-tag Solid/Nostr auth (same widget the estate shares).
Loaded before app.js so auth listeners are wired before it restores
a session. dash works signed-out as a read-only demo. -->
<script src="https://unpkg.com/xlogin"></script>
<!-- SolidKit v1.0 vendored — do not edit; canonical: solid-apps.github.io/kit -->
<script src="kit.js"></script>
<script src="app.js"></script>
</body>
</html>