-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
99 lines (92 loc) · 3.49 KB
/
index.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html><html>
<head>
<meta content="text/html; charset=UTF-8" http-equix="content-type">
<base target="__BLANK" />
</head><body>
<div class="banner">
<span><img data-uix="solidLogo" /></span>
<div class="podOwnerPanel">
<div class="podOwnerDescription">
<h2 data-uix="podOwnerName"></h2>
<div data-uix="podOwnerRole"></div>
<div data-uix="podOwnerPronouns"></div>
</div>
</div>
<img data-uix="podOwnerPhoto" />
</div>
<div class="topMenu">
<span id="userMenuToggle">≡</span>
<div data-uix="solidLogin"></div>
<div class="podOwnerMenu">
<a data-uix="podOwnerHome">Home</a>
<a href="" data-uix="podOwnerWebid">Profile</a>
<a data-uix="podOwnerInstances"
data-where="vcard:AddressBook"
>Address Book</a>
<a data-uix="podOwnerInstances"
data-where="<http://www.w3.org/2005/01/wf/flow#Tracker>"
>Roadmap</a>
<a data-uix="podOwnerInstances"
data-where="<http://www.w3.org/ns/pim/meeting#LongChat>"
>Chat with me!</a>
</div>
<span id="helpMenu">
<button data-uix="dropdown">?</button>
<div style="display:none">
<a href="https://solidos.github.io/userguide/">User Guide</a>
<a href="https://github.com/solidos/solidos/issues">Report a Probelem</a>
</div>
</span>
</div>
<div id="page">
<div id="userPanel" class="hidden">
<span data-uix="userWebid"></span>
<div class="editMenu">
<a data-uix="editProfile">edit profile</a>
<a data-uix="editPreferences">edit preferences</a>
<a data-uix="toggleVisibility">quick notes</a>
<div data-uix="quicknotes" class="hidden"></div>
</div>
<div data-uix="accordion">
<h3>data storages</h3>
<ul data-uix="userStorages"></ul> <!-- loads on login -->
<h3>personal information tools</h3>
<ul data-uix="userInstances"></ul> <!-- loads on login -->
<h3>friends</h3>
<ul data-defer="userFriends"></ul> <!-- loads on first use or not at all -->
<h3>communities</h3>
<ul data-defer="userCommunities"></ul> <!-- loads on first use or not at all -->
<h3>developer tools</h3>
<ul>
<li><a data-source="https://jeff-zucker.github.io/solid-uix/plugins/solidSpecs.js"
data-uix="standAlonePlugin"
>The Solid Specifications</a>
<li><a data-source="https://jeff-zucker.github.io/solid-uix/plugins/ontologyBrowser.js"
data-uix="standAlonePlugin"
>Ontology Explorer</a>
</ul>
</div>
</div>
<div class="content">
<div data-uix="currentPage"></div>
<div id="notificationArea" data-uix="include" data-source="assets/welcome.html">
</div>
<div id="pluginArea">
<div data-uix="solidOSbrowser"></div>
</div>
</div>
</div>
<!-- just imported libraries below here, nothing to see -->
<script src="https://solidos.github.io/mashlib/dist/mashlib.js" type="module">
</script>
<script type="module">
import {UIX} from './src/uix-core.js';
var uix;
document.addEventListener('DOMContentLoaded', ()=>{
uix = new UIX();
uix.init();
});
</script>
<link rel="stylesheet" href="assets/uix.css">
<link rel="stylesheet" href="https://solidos.github.io/mashlib/dist/mash.css">
</body>