-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdatabrowser.html
More file actions
81 lines (74 loc) · 2.75 KB
/
databrowser.html
File metadata and controls
81 lines (74 loc) · 2.75 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>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
<title>SolidOS</title>
<script>
document.addEventListener('DOMContentLoaded', function() {
panes.runDataBrowser()
})
</script>
</head>
<body id="PageBody" data-app-shell="databrowser">
<!-- Skip-navigation link (accessibility) -->
<a href="#MainContent" class="skip-link">Skip to main content</a>
<!-- Header — populated by solid-panes createHeader(), plus responsive menu toggle -->
<solid-ui-header id="mainSolidUiHeader" theme="" layout="" brand-link="/">
<span slot="title"></span>
</solid-ui-header>
<!--
<header id="PageHeader" role="banner">
<div class="page-header-inner">
<button id="MenuToggleBtn" class="menu-toggle" aria-controls="NavMenu" aria-expanded="false" hidden>
☰
<span class="sr-only">Menu</span>
</button>
</div>
</header
-->
<!-- Main content area — single visible region at a time -->
<main id="MainContent" role="main" tabindex="-1" aria-live="polite">
<div class="app-shell">
<aside id="NavMenu" class="app-nav" aria-label="Application menu" hidden>
<div id="NavMenuContent" class="menu-content">Menu placeholder</div>
</aside>
<div class="app-view">
<!--
Outline view: the primary RDF-subject browser.
Replaces the old <table id="outline"> with a semantic <section>.
JS appends property-table <div>s (not <tr>s) here.
-->
<section
id="OutlineView"
class="outline-view"
aria-label="Resource browser"
>
<!--
Pane icon tray (nav) and pane content are injected here by
OutlineManager.GotoSubject / propertyTable / outlineExpand.
Each subject block is a <article class="subject-block">.
-->
</section>
<!--
Global Dashboard: preferences, profile, contacts, etc.
Hidden by default; toggled by showDashboard / closeDashboard.
-->
<section
id="GlobalDashboard"
class="global-dashboard"
aria-label="Dashboard"
hidden
>
<!-- globalAppTabs appends tab widget here -->
</section>
</div> <!-- .app-view -->
</div> <!-- .app-shell -->
<div id="MenuOverlay" class="menu-overlay" hidden aria-hidden="true"></div>
</main>
<!-- Footer — populated by solid-ui initFooter() -->
<footer id="PageFooter" role="contentinfo">
<!-- solid-ui injects: "Powered by Solid" link -->
</footer>
</body>
</html>