Mercurial > code > home > repos > light9
annotate web/index.html @ 2405:69ca2b2fc133
overcomplicated attempt at persisting the pane layout in the rdf graph
this was hard because we have to somehow wait for the graph to load before config'ing the panes
author | drewp@bigasterisk.com |
---|---|
date | Fri, 17 May 2024 16:58:26 -0700 |
parents | 1d3594ffd14b |
children |
rev | line source |
---|---|
2280
e462853f1ef6
redo homepage and metrics calcs. still a mess
drewp@bigasterisk.com
parents:
2040
diff
changeset
|
1 <!DOCTYPE html> |
1219 | 2 <html> |
3 <head> | |
1593
6059de6659c3
move effects/ page into web/. fix homepage list. rm old subserver code.
Drew Perttula <drewp@bigasterisk.com>
parents:
1414
diff
changeset
|
4 <title>light9 home</title> |
1219 | 5 <meta charset="utf-8" /> |
2280
e462853f1ef6
redo homepage and metrics calcs. still a mess
drewp@bigasterisk.com
parents:
2040
diff
changeset
|
6 <link rel="stylesheet" href="style.css" /> |
2374 | 7 <link rel="stylesheet" href="flexlayout-react/style/dark.css" /> |
2402 | 8 <script type="module" src="TiledHome"></script> |
1219 | 9 </head> |
10 <body> | |
2396 | 11 <style> |
12 #footer { | |
13 position: fixed; /* todo: this shouldn't overlap the layout, but getting the layout smaller was Hard */ | |
14 left: 5px; | |
15 bottom: 0px; | |
16 right: 5px; | |
17 height: 2em; | |
18 | |
19 background-color: rgb(211 211 255 / 96%); | |
20 box-shadow: black 0px -7px 9px 0px; | |
21 } | |
22 </style> | |
2402 | 23 <div id="container">loading layout...</div> |
24 <div id="footer"><light9-home-status></light9-home-status> </div> | |
1219 | 25 </body> |
26 </html> |