-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (85 loc) · 2.85 KB
/
Copy pathindex.html
File metadata and controls
97 lines (85 loc) · 2.85 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Structure</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header id="site-header">
<div id="header-identity">
<span id="site-name">The Structure</span>
<span id="site-descriptor">Why things are the way they are.</span>
</div>
<div id="header-controls">
<div role="group" aria-label="Language register" id="language-toggle">
<button id="toggle-experiential" aria-pressed="true" data-short="Lived">Lived Experience</button>
<button id="toggle-analytical" aria-pressed="false">Analytical</button>
</div>
<button id="fyp-trigger" aria-haspopup="dialog" aria-expanded="false">
Find Your Pain
</button>
</div>
</header>
<main>
<div
id="cy"
role="application"
aria-label="Interactive causal map — The Structure. Use arrow keys to pan, plus and minus to zoom, Tab or Shift+Tab to cycle nodes forward and back, Enter to select, double-click background to reset view."
tabindex="0"
></div>
<div id="layer-legend" role="list" aria-label="Layer color legend"></div>
</main>
<div
id="detail-panel"
role="dialog"
aria-modal="false"
aria-labelledby="panel-node-label"
aria-live="polite"
hidden
>
<button id="panel-close" aria-label="Close node detail panel">×</button>
<div id="panel-content"></div>
</div>
<div id="node-tooltip" aria-hidden="true">
<div class="tooltip-label"></div>
<div class="tooltip-layer"></div>
</div>
<div id="feedback-callout" aria-hidden="true">
<div class="callout-name"></div>
<div class="callout-desc"></div>
<button id="feedback-callout-expand">See full description</button>
</div>
<div
id="fyp-sidebar"
role="dialog"
aria-modal="true"
aria-label="Find Your Entry Point — navigation panel"
hidden
>
<div id="fyp-sidebar-header">
<span id="fyp-sidebar-title">Find Your Pain</span>
<button id="fyp-close" aria-label="Close navigation panel">×</button>
</div>
<p id="fyp-orientation"></p>
<ul id="fyp-list" role="list" aria-label="Entry points by lived experience"></ul>
</div>
<div
id="mobile-sheet"
role="dialog"
aria-modal="false"
aria-labelledby="mobile-panel-node-label"
hidden
>
<div id="mobile-sheet-handle"></div>
<button id="mobile-sheet-close" aria-label="Close node detail">×</button>
<div id="mobile-sheet-content"></div>
</div>
<footer id="site-footer">
<span id="footer-version"></span>
</footer>
<script src="vendor/cytoscape.min.js"></script>
<script type="module" src="js/app.js"></script>
</body>
</html>